Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Comparing An Indicator On Current Bar vs previous bars

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

    Comparing An Indicator On Current Bar vs previous bars

    Hello! I'm stumped on a calculation I'd like to make for a customization. I'd like to use the built-in indicators and see their rate of change to help determine trend, so comparing the value on the current bar vs previous bars.

    I was thinking I should use a private variable, but how can I have this update every x candles on a time-based chart?

    Hoping this is a simple question and I'm just missing the terms to search the docs for. Thank you!

    #2
    Hello trilliantrader,

    Thank you for your post.

    You can use an int variable to know how many bars has passed.

    When the first condition happens, set the bar number.

    Code:
    if (<your condition>)
    {
    firstConditionBar = CurrentBar;
    }
    
    if (CurrentBar - firstConditionBar == 3) // 3 candles have happened
    {
    //do something here
    }


    Indicators can also be accessed via barsAgo indexing.

    For example,

    Code:
    //print the current value of a 20 period SMA
    double value = SMA(20)[0];
    Print("The current SMA value is " + value.ToString());
    
    //print the value 1 bar ago ago
    double value = SMA(20)[1];
    Print("The current SMA value is " + value.ToString());
    ​​​

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    47 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    23 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    33 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    51 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