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

Storing Variables For Future Use On Bar Update?

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

    Storing Variables For Future Use On Bar Update?

    I currently have a strategy that is executing on price change. I am looking to create volume checkpoints and then reference them on each execution of OnBarUpdate. For instance, when I create a local variable called, checkpointVolume I want to store the current volume in it. i.e. checkpointVolume = currentVolume. I then want to store, checkpointVolume in previousCheckpointVolume so that when it updates on price change I can see if previousCheckpointVolume is greater or less than the currentVolume. Is there a way to bring those variables along through executions of the bar update?

    #2
    Hello Secondsight87,

    Thanks for your post.

    OnBarUpdate() will process for each price change that occurs when running the script with Calculate.OnPriceChange.

    You could consider creating class-level double variable names currentVolume and a Series<double> variable called checkpointVolume. Assign the current volume (Volume[0]) to the currentVolume variable. Then assign the currentVolume variable to the checkpointVolume variable.

    Accessing previous checkpointVolume values could be done by supplying a BarsAgo index for the value you want to access since this is a Series<double> variable. For example, checkpointVolume[1] would access the previous value assigned to that variable.

    See the help guide documentation below for more information.

    Series<T>: https://ninjatrader.com/support/help...t8/seriest.htm
    Volume: https://ninjatrader.com/support/help...ies_volume.htm
    Calculate: https://ninjatrader.com/support/help.../calculate.htm

    Let me know if I may assist further.
    Brandon H.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by llanqui, Today, 03:53 AM
    0 responses
    6 views
    0 likes
    Last Post llanqui
    by llanqui
     
    Started by burtoninlondon, Today, 12:38 AM
    0 responses
    10 views
    0 likes
    Last Post burtoninlondon  
    Started by AaronKoRn, Yesterday, 09:49 PM
    0 responses
    15 views
    0 likes
    Last Post AaronKoRn  
    Started by carnitron, Yesterday, 08:42 PM
    0 responses
    11 views
    0 likes
    Last Post carnitron  
    Started by strategist007, Yesterday, 07:51 PM
    0 responses
    14 views
    0 likes
    Last Post strategist007  
    Working...
    X