Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Getting price of highest volume level

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

    Getting price of highest volume level

    Is there a way to get the price level for the highest volume level of a bar?

    I'm currently using Volumetric.
    For this example the level with the highest volume on the current bar is 4686.

    Is there a way to find that level using ninjascript?

    Click image for larger version

Name:	123.PNG
Views:	292
Size:	17.3 KB
ID:	1185639

    #2
    Hello Ousher,

    Thank you for your post.

    Yes, you can get the price of the highest volume level for the bar using GetMaximumVolume() referencing the Volumetric series. Here's a modified version of the example from our help guide to illustrate:

    Code:
    protected override void OnBarUpdate()
    {
            if (Bars == null)
              return;
    
    
           // This sample assumes the Volumetric series is the primary DataSeries on the chart, if you would want to add a Volumetric series to a  
    
           // script, you could call AddVolumetric() in State.Configure and then for example use
           // NinjaTrader.NinjaScript.BarsTypes.VolumetricBarsType barsType = BarsArray[1].BarsType as
    
           // NinjaTrader.NinjaScript.BarsTypes.VolumetricBarsType;
    
            NinjaTrader.NinjaScript.BarsTypes.VolumetricBarsType barsType = Bars.BarsSeries.BarsType as    
            NinjaTrader.NinjaScript.BarsTypes.VolumetricBars Type;
    
            if (barsType == null)
              return;
    
            try
            {
              double price;
              Print("Maximum Combined: " + barsType.Volumes[CurrentBar].GetMaximumVolume(null, out price) + " at price: " + price);
            }
            catch{}
    }


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

    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
    69 views
    0 likes
    Last Post PaulMohn  
    Working...
    X