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 Haiasi, 04-25-2024, 06:53 PM
    2 responses
    16 views
    0 likes
    Last Post Massinisa  
    Started by Creamers, Today, 05:32 AM
    0 responses
    5 views
    0 likes
    Last Post Creamers  
    Started by Segwin, 05-07-2018, 02:15 PM
    12 responses
    1,786 views
    0 likes
    Last Post Leafcutter  
    Started by poplagelu, Today, 05:00 AM
    0 responses
    3 views
    0 likes
    Last Post poplagelu  
    Started by fx.practic, 10-15-2013, 12:53 AM
    5 responses
    5,407 views
    0 likes
    Last Post Bidder
    by Bidder
     
    Working...
    X