From 83708ae04596f7292a5a4e34a6a8ffd1c8908d33 Mon Sep 17 00:00:00 2001 From: JoeSchr Date: Thu, 29 Apr 2021 12:16:02 +0200 Subject: [PATCH] Update strategy-advanced.md Remove untrue comment probably left-over from more intricate example --- docs/strategy-advanced.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/strategy-advanced.md b/docs/strategy-advanced.md index 49b310303..ccd4c2419 100644 --- a/docs/strategy-advanced.md +++ b/docs/strategy-advanced.md @@ -57,8 +57,7 @@ class AwesomeStrategy(IStrategy): trade_open_date = timeframe_to_prev_date(self.timeframe, trade.open_date_utc) trade_row = dataframe.loc[dataframe['date'] == trade_open_date].squeeze() - # Sell when price falls below value in stoploss column of taken buy signal. - # above 20% profit, sell when rsi < 80 + # Above 20% profit, sell when rsi < 80 if current_profit > 0.2: if trade_row['rsi'] < 80: return 'rsi_below_80'