Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

retrieving a variables value from a bar before or X bars before

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

    retrieving a variables value from a bar before or X bars before

    Hi... I know there's a way to do this using custom series? Can I get a little help or pointer to a good example?

    1. I'm trying to build my own heiken ashi calculations inside of my strategy

    2. I have this line, which wants to reference a calculated value "ha_ThisOpen" from the previous bar, inside of its calculation.

    ha_ThisOpen = (ha_ThisOpen[1] + ha_ThisClose[1]) / 2;

    How do I properly "look back" to the value of a variable for previous X bars?

    Thank you.

    #2
    Hello halgo_boulder,

    Thanks for your post.

    This could be accomplished by using a custom Series<double> variable.

    You would create a custom Series<double> variable in your script, assign the calculation to the Series<double> variable, and then you could access previous values by passing in a barsAgo value for the Series.

    For example, if you have a Series<double> named 'ha_ThisOpen' then you could access the previous bar's value for this Series by passing in 1 for the barsAgo.

    ha_ThisOpen[1] would get the previous bar's value for this Series. Note that we pass in a 1 for barsAgo to get the previous bar value of this Series.

    See this help guide page for more information about working with custom Series: https://ninjatrader.com/support/help...t8/seriest.htm
    <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 Mindset, 04-21-2026, 06:46 AM
    0 responses
    87 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    128 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    65 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    117 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    67 views
    0 likes
    Last Post PaulMohn  
    Working...
    X