Announcement

Collapse
No announcement yet.

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.
    <span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    45 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    21 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    31 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    50 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    42 views
    0 likes
    Last Post CarlTrading  
    Working...
    X