RunningMode¶
Summary¶
Defines if a cBot is running in real time, in the silent backtesting mode, in the visual backtesting mode, or in the optimization mode.
Signature¶
1 |
|
Namespace¶
cAlgo.API
Fields¶
Name | Description |
---|---|
RealTime | The cBot is running in real time. |
SilentBacktesting | The cBot is running in the silent backtesting mode. |
VisualBacktesting | The cBot is running in the visual backtesting mode. |
Optimization | The cBot is running in the optimization mode. |
Examples¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
|
Last update: March 30, 2023