Zorro-astrian

ALERT: Passed Yesterday's High/Low

This is just a simple script to show if the current price passed yesterday's high or low price. It will create an alert if so (which can be set up to notify you via email or text).

blog.tradingview.com/?p=1633
Open-source script

In true TradingView spirit, the author of this script has published it open-source, so traders can understand and verify it. Cheers to the author! You may use it for free, but reuse of this code in a publication is governed by House Rules. You can favorite it to use it on a chart.

Disclaimer

The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.

Want to use this script on a chart?
//@version=2
study("Passed Yesterday's High/Low", overlay=true)

//Yesterday's Daily High and Low
YesterHigh = security(tickerid, "D", high[1])
YesterLow = security(tickerid, "D", low[1])

//Current Minute Price
price = security(tickerid, "1", open)

//Price Rises
Rises = price > YesterHigh ? true : false

//Price Falls
Falls = price < YesterLow ? true: false

alertcondition(Rises, title='Price Up', message='Price has Risen!')
alertcondition(Falls, title='Price Down', message='Price has Fallen!')

plot(YesterHigh, color=green)
plot(YesterLow, color=red)