Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

OF ninjascript issue

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

    OF ninjascript issue

    Dear NT8 Support,


    Background: Trying to use some OF methods but am confused why some methods working well others don't. The code (strategy code) is run on a Volumetric chart. Below is my simplified codes:


    protected override void OnBarUpdate()
    {
    double poc;
    long bv, av;
    NinjaTrader.NinjaScript.BarsTypes.VolumetricBarsTy pe ofBars = Bars.BarsSeries.BarsType as NinjaTrader.NinjaScript.BarsTypes.VolumetricBarsTy pe;
    if (State == State.Realtime)
    {
    if (kbTest){
    kbTest=false;
    ofBars.Volumes[CurrentBar].GetMaximumVolume(null, out poc);
    Print("poc at "+poc.ToString());
    try{
    bv=ofBars.Volumes[CurrentBar].GetBidVolumeForPrice(Close[0]);
    av=ofBars.Volumes[CurrentBar].GetAskVolumeForPrice(Close[0]);
    Print(string.Format("bv={0} av={2}",bv,av));
    }
    catch(Exception e){
    Print(e.Message);
    }
    }
    }
    } //============ End of code

    The bool var kbTest is set via keyboard. So when I press my KB key, the print output I get is:


    poc at 2796.25
    Index (zero based) must be greater than or equal to zero and less than the size of the argument list.


    .. which means the GetMaximumVolume is working (poc value tally with the chart display) but why the other OF methods generating exception? In the error print above, what is the "argument list"?


    Pls help me overcome this issue. Thanks,
    Tiang

    #2
    Hello Tiang,

    Thanks for the post.

    This line is what is causing the error:

    PHP Code:
    Print(string.Format("bv={0} av={2}",bv,av)); 
    
    You will need to reference 0 and 1 for two formatting arguments.

    Please let us know if we may be of any further assistance.

    Comment


      #3
      Thanks Chris for your fast help. I feel silly to miss such an obvious mistake...must be the stress from those losing trades.

      Comment


        #4
        Dear Chris L.
        the output of av=barsType.Volumes[CurrentBar].GetBidVolumeForPrice(Close[0]);
        always gives 0
        could you let me know why?
        Thanks in advance

        Comment


          #5
          Hello xg5463,

          Thank you for the post.

          Did you make sure to add a 1 tick series in State.Configure? I have attached an example that uses all of the volumetric bars methods. This indicator must run on a chart that has volumetric bars as its primary series. If your primary series is not a volumetric bar, you must use AddVolumetric:



          Please let me know if I can assist further.,
          Attached Files

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by NullPointStrategies, Yesterday, 05:17 AM
          0 responses
          62 views
          0 likes
          Last Post NullPointStrategies  
          Started by argusthome, 03-08-2026, 10:06 AM
          0 responses
          134 views
          0 likes
          Last Post argusthome  
          Started by NabilKhattabi, 03-06-2026, 11:18 AM
          0 responses
          75 views
          0 likes
          Last Post NabilKhattabi  
          Started by Deep42, 03-06-2026, 12:28 AM
          0 responses
          45 views
          0 likes
          Last Post Deep42
          by Deep42
           
          Started by TheRealMorford, 03-05-2026, 06:15 PM
          0 responses
          50 views
          0 likes
          Last Post TheRealMorford  
          Working...
          X