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 benmarkal, Yesterday, 12:52 PM
    3 responses
    22 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by helpwanted, Today, 03:06 AM
    1 response
    17 views
    0 likes
    Last Post sarafuenonly123  
    Started by Brevo, Today, 01:45 AM
    0 responses
    11 views
    0 likes
    Last Post Brevo
    by Brevo
     
    Started by aussugardefender, Today, 01:07 AM
    0 responses
    6 views
    0 likes
    Last Post aussugardefender  
    Started by pvincent, 06-23-2022, 12:53 PM
    14 responses
    244 views
    0 likes
    Last Post Nyman
    by Nyman
     
    Working...
    X