Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Up down volume help please

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

    Up down volume help please

    I'm trying to use the Updown volume indicator and am having problems quantifying it. How do I quantify red / green - there doesn't seem to be the parameters.

    Thanks

    #2
    Hi munkee, welcome to the forums!

    An easy way to quantify it would be to just use volume, and apply the price change to make it "red/green".

    If you take a look at the code for VolumeUpDown, the color is set very simply. Values[0] contains the UpVolumes, and Values[1] contains DownVolumes.
    Code:
    if (Close[0] > Open[0])
                    Values[0].Set(Volume[0]);
                else
                    Values[1].Set(Volume[0]);
    Maybe you could try working similar logic into your own application.
    AustinNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    648 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    369 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    108 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    572 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    573 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X