Display the signal candle analyzed in telegram.

This commit is contained in:
Surfer Admin
2022-05-31 15:46:43 -04:00
parent 34a44b9dd2
commit 7fe8b7661d
2 changed files with 28 additions and 0 deletions

View File

@@ -852,6 +852,16 @@ class FreqtradeBot(LoggingMixin):
'current_rate': current_rate,
}
# display the candle analyzed in telegram
analyzed_df, _ = self.dataprovider.get_analyzed_dataframe(trade.pair,
self.strategy.timeframe)
analyzed_candle = analyzed_df.iloc[-1] if len(analyzed_df) > 0 else None
if analyzed_candle is not None:
candle_columns = analyzed_candle[['date', 'open', 'high', 'low', 'close']]
msg.update({
'analyzed_candle': candle_columns.to_json(date_unit='s', date_format='iso')
})
# Send the message
self.rpc.send_msg(msg)
@@ -1540,6 +1550,16 @@ class FreqtradeBot(LoggingMixin):
'fiat_currency': self.config['fiat_display_currency'],
})
# display the candle analyzed in telegram
analyzed_df, _ = self.dataprovider.get_analyzed_dataframe(trade.pair,
self.strategy.timeframe)
analyzed_candle = analyzed_df.iloc[-1] if len(analyzed_df) > 0 else None
if analyzed_candle is not None:
candle_columns = analyzed_candle[['date', 'open', 'high', 'low', 'close']]
msg.update({
'analyzed_candle': candle_columns.to_json(date_unit='s', date_format='iso')
})
# Send the message
self.rpc.send_msg(msg)