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 nicthe, 08-23-2023, 07:53 AM
    7 responses
    195 views
    0 likes
    Last Post nicthe
    by nicthe
     
    Started by nicthe, Today, 09:24 AM
    0 responses
    5 views
    0 likes
    Last Post nicthe
    by nicthe
     
    Started by stalt, 12-28-2015, 01:36 PM
    6 responses
    1,536 views
    0 likes
    Last Post giulyko00  
    Started by Tburg1073, Today, 08:36 AM
    0 responses
    7 views
    0 likes
    Last Post Tburg1073  
    Started by alexstox, 10-16-2018, 03:29 PM
    10 responses
    334 views
    0 likes
    Last Post Tburg1073  
    Working...
    X