Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Start processing from X bars ago

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

    Start processing from X bars ago

    If I use the following the code below it only runs for real time data
    if (Historical)
    return;

    What if I want to start the processing starting X bars before the latest bar. How can I do that?
    Can't find the answer in the ver7 help guide.

    Peter
    Last edited by PeterBear; 04-15-2011, 08:56 AM.

    #2
    Hello Peter,

    Thank you for your post.

    Count will contain the current total number of bars on a chart. If you compare CurrentBar to Count you could start processing only so many bars from current. For example, if you only want to process the 20 most recent bars of a chart, you could use:

    if (CurrentBar > (Count - 20))

    Please let me know if I can assist with anything further.
    DexterNinjaTrader Customer Service

    Comment


      #3
      Thank you. Got it going now..

      OnBarUpdate()
      {
      if (Historical)
      return;
      run blah blah - real time here
      }

      OnBarUpdate()
      {
      if (CurrentBar < (Count - 20)) //note <
      return;
      run blah blah - starting at 20 bars from the latest bar
      }
      Last edited by PeterBear; 04-15-2011, 08:11 PM.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      668 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      377 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      110 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      575 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      580 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X