Announcement

Collapse
No announcement yet.

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.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    82 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    43 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    64 views
    2 likes
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    68 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    56 views
    0 likes
    Last Post CarlTrading  
    Working...
    X