add buy_tag to trade tooltip in plots

This commit is contained in:
Italo 2022-01-20 17:17:58 +00:00
parent d549905856
commit 4e9f0d89af

View File

@ -236,6 +236,7 @@ def plot_trades(fig, trades: pd.DataFrame) -> make_subplots:
if trades is not None and len(trades) > 0:
# Create description for sell summarizing the trade
trades['desc'] = trades.apply(lambda row: f"{row['profit_ratio']:.2%}, "
f"{row['buy_tag']}, "
f"{row['sell_reason']}, "
f"{row['trade_duration']} min",
axis=1)