You can find the callback calling sequence in [bot-basics](bot-basics.md#bot-execution-logic)
@ -1026,17 +1026,20 @@ Defining a stoploss of 10% at 10x leverage would trigger the stoploss with a 1%
## Order filled Callback
The `order_filled()` callback may be used by strategy developer to perform specific actions based on current trade state after an order is filled.
The `order_filled()` callback may be used to perform specific actions based on the current trade state after an order is filled.
It will be called independently of the order type (entry, exit, stoploss or position adjustment).
Assuming that your strategy need to store the high value of the candle at trade entry, this is possible with this callback as the following example show.
Assuming that your strategy needs to store the high value of the candle at trade entry, this is possible with this callback as the following example show.