dingo9

Results 7 issues of dingo9

In core/python/kungfu/wingchun/book/position.py ```python def _apply_close(self, trade): if self.volume < trade.volume: raise Exception("{} over close position, current volume is {}, {} to close".format(self.uname, self.volume, trade.volume)) if trade.offset == Offset.CloseToday and self.volume...

in [code](https://github.com/hummingbot/hummingbot/blob/f1115b480b306ab62adc39815f89f4c0577d4857/hummingbot/strategy/avellaneda_market_making/avellaneda_market_making.pyx) line 755 ```python self._reservation_price = price - (q * self.gamma * vol * time_left_fraction) self._optimal_spread = self.gamma * vol * time_left_fraction self._optimal_spread += 2 * Decimal(1 + self.gamma...

bug

In Reserve Price Equation and Reserve Spread Equation, sigma ** 2 is used to measure market volatility risk, like ``` r[n] = s[n] - q[n] * gamma * sigma **...

__all__ statements should be placed in head of python file. (btw: use '''import *''' is not good practice in code)

good first issue
hacktoberfest

Because the docset version of pandas is too old, I follow https://kapeli.com/docsets#dashDocset step by step, using http://pandas.pydata.org/pandas-docs/stable/pandas.zip build new version of docset. I change a little code of https://github.com/datasaur/pgdash to...

add subtest for unittest fix issue #98 #37

In Class ClickCompleter which in _completer.py init param show_only_unused just work for click.Option, but not for click.Argument