Is there a way to setup an alert when a Range bar turns from Red to Green on a 1hr time frame?


  • Questions
  • Stock Scanners
  • Is there a way to setup an alert when a Range bar turns from Red to Green on a 1hr time frame?
Category:
0
0

Hi Mr. Hahn,  I’ve been up all night waiting for a Range bar to turn a color and not sure how to set an alert so I can get some sleep at night.   Thank you for all you do.

Marked as spam
Posted by (Questions: 5, Answers: 7)
Asked on August 9, 2017 6:15 pm
100 views
0
Private answer

Does this work? There is no “hourly time frame” for range bars.

def downBar = close < open;
def upBar = close > open;
def signal = downBar[1] and upBar;
Alert(signal, "Change to green", Alert.BAR, Sound.RING);

Marked as spam
Posted by (Questions: 37, Answers: 4089)
Answered on August 9, 2017 7:48 pm
0

Thank you… is there anyway I can get that alert to go to my phone. I hear the ring when it changes on the chart.

( at August 10, 2017 10:29 pm)
0

No, sorry that is not going to be possible. Because the only two methods to achieve that do not currently work with range bars.

( at August 11, 2017 7:28 am)