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:	282
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 NullPointStrategies, Today, 05:17 AM
    0 responses
    50 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    126 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    69 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    42 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