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 NullPointStrategies, 03-13-2026, 05:17 AM
    0 responses
    96 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    154 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    82 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    54 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    72 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X