Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Start a strategy ignore historical strategy position

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

    Start a strategy ignore historical strategy position

    I would like to start a strategy and have it ignore any existing strategy positions. It always starts as flat and will take new entries.

    In a nt7 forum it was suggested in response to a question to :

    ----------------
    Yes, you can add the following line to OnBarUpdate() which means the strategy is only run against real-time data.

    if (Historical)
    return;


    --------
    This did not work for me in NT8 ...error upon compile... CS0103.

    How might I accomplish this in NT8?

    thx

    #2
    Hello RedRock,

    Thank you for writing in.

    The equivilant of if(Historical) return in NT8 would be,

    Code:
    if(State ==State.Historical) return;
    Please let us know if you need further assistance.
    Alan P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    52 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    29 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    194 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    355 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    274 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X