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 SalmaTrader, 07-07-2026, 10:26 PM
    0 responses
    29 views
    0 likes
    Last Post SalmaTrader  
    Started by CarlTrading, 07-05-2026, 01:16 PM
    0 responses
    17 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 06-17-2026, 10:32 AM
    0 responses
    9 views
    0 likes
    Last Post CaptainJack  
    Started by kinfxhk, 06-17-2026, 04:15 AM
    0 responses
    16 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 06-17-2026, 04:06 AM
    0 responses
    19 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Working...
    X