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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    63 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    35 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    54 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    61 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    48 views
    0 likes
    Last Post CarlTrading  
    Working...
    X