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 Jonafare, 12-06-2012, 03:48 PM
    5 responses
    3,985 views
    0 likes
    Last Post rene69851  
    Started by Fitspressorest, Today, 01:38 PM
    0 responses
    2 views
    0 likes
    Last Post Fitspressorest  
    Started by Jonker, Today, 01:19 PM
    0 responses
    2 views
    0 likes
    Last Post Jonker
    by Jonker
     
    Started by futtrader, Today, 01:16 PM
    0 responses
    7 views
    0 likes
    Last Post futtrader  
    Started by Segwin, 05-07-2018, 02:15 PM
    14 responses
    1,792 views
    0 likes
    Last Post aligator  
    Working...
    X