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:	287
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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    45 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    21 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    31 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    50 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    42 views
    0 likes
    Last Post CarlTrading  
    Working...
    X