Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Dataseries-BarsInProgress-Volumetric

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

    Dataseries-BarsInProgress-Volumetric

    Hello,

    I use more than one dataseries in my script.

    When I have in OnBarUpdate "if(State==State.Historical) return;" it works OK.
    But when I add 2 x volumetric with eg
    in configure AddVolumetric("MNQ 06-20", BarsPeriodType.Range, 3, VolumetricDeltaType.BidAsk, 1);
    and in onbarupdate
    NinjaTrader.NinjaScript.BarsTypes.VolumetricBarsTy pe barsType = BarsArray[2].BarsType as NinjaTrader.NinjaScript.BarsTypes.VolumetricBarsTy pe;
    if (barsType == null) return;
    NinjaTrader.NinjaScript.BarsTypes.VolumetricBarsTy pe barsType2 = BarsArray[4].BarsType as NinjaTrader.NinjaScript.BarsTypes.VolumetricBarsTy pe;
    if (barsType2 == null) return;

    and use it in the code eg like
    "&&(barsType.Volumes[CurrentBar].GetAskVolumeForPrice(Highs[2][1])+barsType.Volumes[CurrentBar].GetAskVolumeForPrice(Highs[2][1]-1*TickSize)"

    I get in the log tab the error message:
    "Time Category Message
    08.05.2020 10:28:00 Default Strategy 'Tx17xNQv1xAvolx1x2r': Error on calling 'OnBarUpdate' method on bar 1223456: Index was outside the bounds of the array."

    What might be the reason for this log-message please?

    Thank you!
    Tony

    #2
    Hello tonynt,

    One problem in what you provided is that you are using "CurrentBar". That will be the current bar for the series which called OnBarUpdate not necessarily the volumetric series. You could try using CurrentBars[2] instead to see if that is the reason for the error.

    You are also using other indexes in this syntax so at this point it would be best to reduce what you have and find what specifically is throwing the error.

    Please let me know if I may be of further assistance.

    Comment


      #3
      Hello Jesse,

      it works, so this was the reason!

      Thank you!!!

      Tony

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by NullPointStrategies, Today, 05:17 AM
      0 responses
      39 views
      0 likes
      Last Post NullPointStrategies  
      Started by argusthome, 03-08-2026, 10:06 AM
      0 responses
      124 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      64 views
      0 likes
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      41 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Started by TheRealMorford, 03-05-2026, 06:15 PM
      0 responses
      46 views
      0 likes
      Last Post TheRealMorford  
      Working...
      X