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 Mindset, 04-21-2026, 06:46 AM
    0 responses
    88 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    134 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
    119 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    67 views
    0 likes
    Last Post PaulMohn  
    Working...
    X