| LogLevel Enumeration |
How to manage opened position when opposite pattern occurred.
Namespace:
MZpack.NT8.Algo
Assembly:
MZpack.NT8.Pro (in MZpack.NT8.Pro.dll) Version: 3.18.1.0 (3.18.1.0)
Syntax [FlagsAttribute]
public enum LogLevel
Members
| Member name | Value | Description |
---|
| NONE | 0 |
No logging.
|
| NV_PATTERN_OBC | 1 |
Log not validated pattern on each bar close. Use it to debug your strategy.
|
| V_PATTERN | 8 |
Log pattern when validated.
|
| ORDER | 16 |
Log orders: Submitted, Working, Filled, PartFilled, Cancelled, Rejected.
|
| ENTRY | 32 |
Log entries of the strategy.
|
| POSITION | 64 |
Log position state.
|
| PROPERTIES | 128 |
Log properties with NinjaScriptProperty attribute.
|
| ALL | 249 |
Log all.
|
See Also