Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Multiple time frames - Double count

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

    Multiple time frames - Double count

    Hi,

    I am developing a multiple time frame indicator which uses a 5 minutes and 30 minutes time frame. The script is applied to a 5 minute chart, and I use Add(PeriodType.Minute,30); for the 30 minutes time frame.

    I noticed while troubleshooting that every 30 minutes the OnBarUpdate() section is being parsed twice: once for the 5 minute bar that just completed, and then another time for the 30 minutes bar that just completed. Add another time frame using Add(PeriodType.Minute,60); and the parsing is done three times every hour.

    While printing the values of Stochastics %K on the debuging window I noticed that the first parse gives a correct %K value for the 5 minute time frame. On 2nd parse, an invalid %K that comes from I don't know where is calculated again. This generates bad signal (arrows up or down) on my chart.

    The question: Is there a way to specify, in the OnBarUpdate() section that I want the script to exit ( return ) whenever the OnBarUpdate is applied to the 30 minute bar?

    Thanks in advance.

    -mp

    #2
    mp, yes you can control this with the BarsInProgress property in NinjaScript -



    So for your case: if (BarsInProgress == 1) return; // 1 being the first added series, so your 30 min.

    So updates to the primary 5 min and tertiary 60 min would still come through then.

    Comment


      #3
      Yes! That fixed it. Many thanks!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Hwop38, 05-04-2026, 07:02 PM
      0 responses
      164 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Started by CaptainJack, 04-24-2026, 11:07 PM
      0 responses
      317 views
      0 likes
      Last Post CaptainJack  
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      245 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      350 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      179 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Working...
      X