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

How to plot swing volume

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

    How to plot swing volume

    Hi, I am using DrawText() and want to plot the volume for each swing high and swing low so that I may compare them.


    Also second question, how would I go about saving a value. For example if the close crossed above a swing high, I would like to save the value of the volume so that I may call it later.

    Would I accomplish this buy creating an Array? Could someone provide an example.

    Thanks.
    Last edited by brucelevy; 05-27-2017, 11:39 AM.

    #2
    Hello,

    Thank you for the post.

    You can find the syntax for accessing the Swing high and low here: http://ninjatrader.com/support/helpG...lightsub=swing

    You could use the swing in a condition like a normal indicator and check that the current swing high has changed from the previous bars high as one approach. You could then access the Volume using Volume[0]



    To store values, you could use variables. A simple example is the following:

    Code:
    private double myDouble;
    
    protected override void OnBarUpdate()
    {
        myDouble = Close[0];
    }
    If you want to store a value with a BarsAgo, you would instead need to use a DataSeries: http://ninjatrader.com/support/helpG...ries_class.htm

    I look forward to being of further assistance.
    JesseNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by AaronKoRn, Yesterday, 09:49 PM
    0 responses
    11 views
    0 likes
    Last Post AaronKoRn  
    Started by carnitron, Yesterday, 08:42 PM
    0 responses
    10 views
    0 likes
    Last Post carnitron  
    Started by strategist007, Yesterday, 07:51 PM
    0 responses
    12 views
    0 likes
    Last Post strategist007  
    Started by StockTrader88, 03-06-2021, 08:58 AM
    44 responses
    3,982 views
    3 likes
    Last Post jhudas88  
    Started by rbeckmann05, Yesterday, 06:48 PM
    0 responses
    10 views
    0 likes
    Last Post rbeckmann05  
    Working...
    X