From 1d0f1bd1ee37f00a8750b6ff5ca4a36c6f32bb70 Mon Sep 17 00:00:00 2001 From: Axel-CH Date: Sat, 16 Sep 2023 13:13:23 -0400 Subject: [PATCH] update doc --- docs/strategy-callbacks.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/strategy-callbacks.md b/docs/strategy-callbacks.md index a818315ce..321874f6f 100644 --- a/docs/strategy-callbacks.md +++ b/docs/strategy-callbacks.md @@ -510,6 +510,8 @@ Each of these methods are called right before placing an order on the exchange. !!! Note 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. ### Custom order entry and exit price example ``` python