Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Up / down volume

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

    Up / down volume

    Hey guys,

    Im after an up / down volume indicator where up bar volume points UP, and down bar volume points down.

    Anyone got anything like this they could hook me up with??

    See the link below .. its the one just below the renko bars




    Cheers,

    If so feel free to email me tsfebay at gmail.com

    #2
    Hello thesnowyforest,
    You can use the VolumeUpDown indicator that comes with NinjaTrader.
    • Right click on the chart
    • In the context menu click on Indicators..
    • In the Indicator dialog select VolumeUpDown from the left pane
    • Click on the New button
    • Click Ok


    Please let me know if I can assist you any further.
    JoydeepNinjaTrader Customer Service

    Comment


      #3
      Hi
      Yes I know about that. Did u get a chance to look at the link I posted?

      Ninjas standard up down volume just paints the up and down volume.

      I'd like the actual volume bars to go up and down

      Comment


        #4
        Hello,
        You can try these indicators from the download section of our forum.



        To import it into NinjaTrader please follow the below steps as mentioned in our help guide


        Please let me know if I can assist you any further.
        JoydeepNinjaTrader Customer Service

        Comment


          #5
          All good.

          Found what i was after on Big Mikes forum

          Cheers

          Comment


            #6
            how in a strategy do i reference up volume versus down volume. i can do it on the chart but i dont see defines terms for this to be able to reference one versus the other in a strategy - thx

            Comment


              #7
              Hello HiFreq,

              You will need to use VolumeUpDown().Values[0][0] to get the Up volume and Values[1][0] to get the down volume
              Code:
              if(Close[0] >= Open[0])
              	Print("Up " + VolumeUpDown().Values[0][0] + " " + Time[0]);
              			
              else
              	Print("Down " + VolumeUpDown().Values[1][0] + " " + Time[0]);
              Cal H.NinjaTrader Customer Service

              Comment


                #8
                thx

                is there no quick way to just say "if (VolumeUpDown().Values[0][0] > VolumeUpDown().Values[1][0]) THEN do xyz?

                Comment


                  #9
                  No, because each bar will either have up volume or down volume, but not both. You cannot compare the current bars up volume to the down volume since one value would not exist.

                  This is really just a visual indicator for charting.
                  MatthewNinjaTrader Product Management

                  Comment


                    #10
                    Hi, I'm looking for the same thing you were looking (Up volume bar going up, down volume bar going down, for every bar) Could you please help me with this? Thx

                    Comment


                      #11
                      Originally posted by thesnowyforest View Post
                      All good.

                      Found what i was after on Big Mikes forum

                      Cheers
                      Hi, I'm looking for the same thing you were looking (Up volume bar going up, down volume bar going down, for every bar) Could you please help me with this? Thx

                      Comment

                      Latest Posts

                      Collapse

                      Topics Statistics Last Post
                      Started by Johnny Santiago, 10-11-2019, 09:21 AM
                      95 responses
                      6,193 views
                      0 likes
                      Last Post xiinteractive  
                      Started by xiinteractive, 04-09-2024, 08:08 AM
                      2 responses
                      11 views
                      0 likes
                      Last Post xiinteractive  
                      Started by Irukandji, Today, 09:34 AM
                      1 response
                      3 views
                      0 likes
                      Last Post NinjaTrader_Clayton  
                      Started by RubenCazorla, Today, 09:07 AM
                      1 response
                      5 views
                      0 likes
                      Last Post RubenCazorla  
                      Started by TraderBCL, Today, 04:38 AM
                      3 responses
                      25 views
                      0 likes
                      Last Post NinjaTrader_Jesse  
                      Working...
                      X