Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Getting price level of Max/Min Delta seen

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

    Getting price level of Max/Min Delta seen

    From a volumetric chart, I am able to get the Max Positive/Negative Delta seen using
    Code:
    barsType.Volumes[CurrentBar].GetMaximumPositiveDelta());
    barsType.Volumes[CurrentBar].GetMaximumNegativeDelta());
    , but is there a way to point to the price level that it is on?

    Thanks!

    #2
    Hi Ousher, thanks for posting.

    There's no specific method to return the price at max or min horizontal delta. You would need to calculate it with some C# code using the GetDeltaForPrice(double price) method. You can iterate through each tick of the bar like this:

    Code:
    for(double i = Low[0]; i <= High[0]; i+=TickSize)
    {
        //keep max/min seen value for GetDeltaForPrice(i);
    }
    Kind regards,
    -ChrisL

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CaptainJack, 05-29-2026, 05:09 AM
    0 responses
    172 views
    0 likes
    Last Post CaptainJack  
    Started by CaptainJack, 05-29-2026, 12:02 AM
    0 responses
    88 views
    0 likes
    Last Post CaptainJack  
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    129 views
    0 likes
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    208 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    185 views
    0 likes
    Last Post CarlTrading  
    Working...
    X