From 0c096e4e03440bc54b31e6f939da12f7223c364c Mon Sep 17 00:00:00 2001 From: Stefano Ariestasia Date: Fri, 1 Apr 2022 19:28:42 +0900 Subject: [PATCH] fix some typo --- docs/strategy_migration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/strategy_migration.md b/docs/strategy_migration.md index 4b014c657..1ceb98fa5 100644 --- a/docs/strategy_migration.md +++ b/docs/strategy_migration.md @@ -40,7 +40,7 @@ You can use the quick summary as checklist. Please refer to the detailed section ### `populate_buy_trend` -In `populate_buy_trend()` - you will want to change the columns you assign from `'buy`' to `'enter_long`, as well as the method name from `populate_buy_trend` to `populate_entry_trend`. +In `populate_buy_trend()` - you will want to change the columns you assign from `'buy`' to `'enter_long'`, as well as the method name from `populate_buy_trend` to `populate_entry_trend`. ```python hl_lines="1 9" def populate_buy_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame: @@ -77,7 +77,7 @@ Please refer to the [Strategy documentation](strategy-customization.md#entry-sig ### `populate_sell_trend` Similar to `populate_buy_trend`, `populate_sell_trend()` will be renamed to `populate_exit_trend()`. -We'll also change the column from `"sell"` to `"exit_long"`. +We'll also change the column from `'sell'` to `'exit_long'`. ``` python hl_lines="1 9" def populate_sell_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame: