From 9bb6ba086bdeffe3b676cb0e0bf0e720b514fe8e Mon Sep 17 00:00:00 2001 From: Rokas Kupstys <19151258+rokups@users.noreply.github.com> Date: Wed, 12 May 2021 17:15:38 +0300 Subject: [PATCH] Update docs/strategy-advanced.md Co-authored-by: Matthias --- docs/strategy-advanced.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/strategy-advanced.md b/docs/strategy-advanced.md index 0fd2b3c41..d533d81cd 100644 --- a/docs/strategy-advanced.md +++ b/docs/strategy-advanced.md @@ -65,7 +65,7 @@ class AwesomeStrategy(IStrategy): trade_date = timeframe_to_prev_date(trade.open_date_utc) # Look up trade candle. trade_candle = dataframe.loc[dataframe['date'] == trade_date] - # trade_candle may be None for trades that just opened as it is stil lincomplete. + # trade_candle may be None for trades that just opened as it is still incomplete. if trade_candle is not None: # <...> ```