removed redundant print()

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

View File

@ -253,15 +253,16 @@ class TestStrategy(IStrategy):
dataframe['ha_low'] = heikinashi['low'] dataframe['ha_low'] = heikinashi['low']
""" """
# Retrieve best bid and best ask # Retrieve best bid and best ask
# ------------------------------------ # ------------------------------------
""" """
ob = self.dp.orderbook(metadata['pair'], 1) # first check if dataprovider is available
print(ob) if self.dp:
dataframe['best_bid'] = ob['bids'][0][0] ob = self.dp.orderbook(metadata['pair'], 1)
dataframe['best_ask'] = ob['asks'][0][0] dataframe['best_bid'] = ob['bids'][0][0]
dataframe['best_ask'] = ob['asks'][0][0]
""" """
return dataframe return dataframe
def populate_buy_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame: def populate_buy_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame: