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 NullPointStrategies, Yesterday, 05:17 AM
    0 responses
    54 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    130 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    71 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    44 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    49 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X