Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

semi automatic trading script

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

    semi automatic trading script

    Hello,

    I'm coding a strategy just to manage positions. I will open this only when I want to enter to market, and close when this exit the positions. The problem is that when I open the strategy on chart, this initially try to operate the past data of the chart and make a sort of historic run. This is not desired, because this change some variables that I need with initialized values at the beginning of the script.

    In resume, I would like to know if I can avoid this historical run of the strategy, so the strategy start to run just with the current data, the data which is in the current bar as I open the strategy, it should be the start bar, not to try to run on past bars.

    Thanks

    #2
    Hello federicoo,

    Thanks for your post.

    Yes, you can skip processing the historical bars by adding this in your onBarUpdate():

    if (State == State.Historical) return; // return if not real time.

    Reference: https://ninjatrader.com/support/help...nt8/?state.htm

    Comment


      #3
      Thank you Paul, it works fine!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      90 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      137 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      68 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by cmoran13, 04-16-2026, 01:02 PM
      0 responses
      120 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      71 views
      0 likes
      Last Post PaulMohn  
      Working...
      X