Initial work on bittrex implementation

This commit is contained in:
fredfortier
2017-08-28 00:27:10 -04:00
parent 1cfcb1d96e
commit c01f2a39a4
3 changed files with 97 additions and 13 deletions
+12
View File
@@ -40,6 +40,18 @@ class BittrexTestCase(BaseExchangeTestCase):
def test_get_candles(self):
log.info('retrieving candles')
ohlcv_neo = self.exchange.get_candles(
data_frequency='5m',
assets=self.exchange.get_asset('neo_btc')
)
ohlcv_neo_ubq = self.exchange.get_candles(
data_frequency='5m',
assets=[
self.exchange.get_asset('neo_btc'),
self.exchange.get_asset('ubq_btc')
],
bar_count=14
)
pass
def test_tickers(self):