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 SalmaTrader, 07-07-2026, 10:26 PM
    0 responses
    50 views
    0 likes
    Last Post SalmaTrader  
    Started by CarlTrading, 07-05-2026, 01:16 PM
    0 responses
    22 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 06-17-2026, 10:32 AM
    0 responses
    16 views
    0 likes
    Last Post CaptainJack  
    Started by kinfxhk, 06-17-2026, 04:15 AM
    0 responses
    22 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 06-17-2026, 04:06 AM
    0 responses
    23 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Working...
    X