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 fx.practic, 10-15-2013, 12:53 AM
    5 responses
    5,403 views
    0 likes
    Last Post Bidder
    by Bidder
     
    Started by Shai Samuel, 07-02-2022, 02:46 PM
    4 responses
    94 views
    0 likes
    Last Post Bidder
    by Bidder
     
    Started by DJ888, Yesterday, 10:57 PM
    0 responses
    6 views
    0 likes
    Last Post DJ888
    by DJ888
     
    Started by MacDad, 02-25-2024, 11:48 PM
    7 responses
    158 views
    0 likes
    Last Post loganjarosz123  
    Started by Belfortbucks, Yesterday, 09:29 PM
    0 responses
    8 views
    0 likes
    Last Post Belfortbucks  
    Working...
    X