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 Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    589 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    342 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    103 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    555 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    552 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X