Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

NT8 if (BackTestMode == BackTestMode.WalkForward)

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    NT8 if (BackTestMode == BackTestMode.WalkForward)

    Hello,

    In NT7 I would use the following code to extract the trade results from WalkForwardAnalysis to a text file that allowed me to graph the complete PNL of an entire WFO execution that spanned many months.

    I am converting from NT7 to NT8 and hoped you could tell me what the NT8 expression would be that I could place in if(State==State.Terminated).

    In NT7 I used...
    protected override void OnTermination()
    {
    if (BackTestMode == BackTestMode.WalkForward) { vExtractPerformanceTrades_ToFile(); }
    }

    I can`t find any references to BackTestMode in NT8 help or an equivalent property.

    Can you please tell me if there is a way for a strategy to know if its being executed in WalkForward mode ?

    Please let me know ?

    #2
    This is an undocumented property and subject to change/break in future releases, but you may try:

    Category == Category.Backtest
    Category == Category.WalkForward
    Category == Category.NinjaScript // normal
    MatthewNinjaTrader Product Management

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, Yesterday, 11:51 AM
    0 responses
    20 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, Yesterday, 11:48 AM
    0 responses
    23 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-25-2026, 09:53 PM
    0 responses
    30 views
    0 likes
    Last Post CaptainJack  
    Started by CaptainJack, 03-25-2026, 09:51 PM
    0 responses
    18 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 03-23-2026, 11:13 AM
    0 responses
    24 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X