Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Issue on strategy start up

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

    Issue on strategy start up

    I am having a problem with the strategy opening a position upon start up. The strategy looks moving average difference to enter if MA(5)[0] > MA(10)[0] && MA(5)[1] <= MA(10)[1]. This is basically an example, the strategy is looking for a crossover. The problem is that right when I start up the strategy, it does not wait for the cross over it just opens up a position. Can I do something to prohibit this?

    #2
    lvaduva,

    When you start a strategy it calculates what it thinks its strategy position is based on all the historical data it is processing and continues off of that strategy position. If you do not wish for this and would like to start fresh whenever you start the strategy please add this to the top of your OnBarUpdate():

    Code:
    if (Historical) return;
    Josh P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    60 views
    0 likes
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    145 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    161 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    97 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    283 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Working...
    X