Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Track a specific Bar

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

    Track a specific Bar

    Hi I am writing a indicator that looks for a specific bar type (an inverted Hammer, I call this bar a signal bar) based on a series of 3 bars occurring.

    I can determine when my signal Bar occurs, but what I then want to do is, wait for another 4 bars to occur then for every bar at bar 5 or greater from the signal bar, check to see if the current bar is above the high of the previous bar.

    So my question is once I have determined the presence of a signal bar how do I track it so I can determine how far advanced I am from that point. Currently I am thinking a variable that holds the signal bar's Time reference 'Time[0]' could be the way to go, but I am not sure how to check a currentBars time reference against a variable holding a time reference.

    Possibly:

    currentBarTime.Set(Time[0])

    If (currentBarTime < (signalBarTime + 50000) {do something}

    as time is in milliseconds and I am considering bars on an 1hour chart time will have to be X times 10,000

    Thoughts?

    Kind regards

    Duncan

    #2
    Ok I answered my own question.

    The answer is to track a bar's time indicator, and then use an if statement

    if (Time[0].Hour > (signalBarTime[0].Hour + 3))

    I discovered through trial and error hours are whole numbers and not in milliseconds as I first thought.

    Anyway I hope this question helps others

    Kind regards

    Duncan

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    599 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    344 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
    558 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    557 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X