From 29a5e049b92ff7812ba329b60fef8cb9132413e8 Mon Sep 17 00:00:00 2001 From: Axel-CH Date: Sun, 17 Sep 2023 03:30:03 -0400 Subject: [PATCH] edit note wording for custom_entry_price --- docs/strategy-callbacks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/strategy-callbacks.md b/docs/strategy-callbacks.md index 8e7bee5f9..d4950cfdd 100644 --- a/docs/strategy-callbacks.md +++ b/docs/strategy-callbacks.md @@ -511,7 +511,7 @@ Each of these methods are called right before placing an order on the exchange. If your custom pricing function return None or an invalid value, price will fall back to `proposed_rate`, which is based on the regular pricing configuration. !!! Note - Within this function you will have access to the Trade object, giving you the flexibility to adjust your current entry or exit price in relation to the current trade status. This object is available as soon as the first entry order associated with the trade is created. + Using custom_entry_price, the Trade object will be available as soon as the first entry order associated with the trade is created, for the first entry, `trade` parameter value will be `None`. ### Custom order entry and exit price example ``` python