removed redundant print()

This commit is contained in:
Yuliyan Perfanov 2019-06-06 18:25:58 +03:00
parent c68fe7a685
commit 2e6ded06a9

View File

@ -256,8 +256,9 @@ class TestStrategy(IStrategy):
# Retrieve best bid and best ask
# ------------------------------------
"""
# first check if dataprovider is available
if self.dp:
ob = self.dp.orderbook(metadata['pair'], 1)
print(ob)
dataframe['best_bid'] = ob['bids'][0][0]
dataframe['best_ask'] = ob['asks'][0][0]
"""