Available translations

Simulating Order Cancellations

foundations.png
Summary: The simulation of the cancellation of an order is quite straightforward, as the trading bot has all the information required to proceed.
Simulating the cancellation of an order is almost trivial. Of course, the process applies to backtesting and paper trading sessions only.
The order is closed seamlessly as the bot has full control over the order’s details.
 tradingEngineOrder.status.value = 'Closed'
Once the order is closed, the bot runs the calculations to adjusts the stage size (see Accounting).
Previous
Simulating Sync With the Exchange
Next
Accounting