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
オープンソーススクリプト

TradingViewの精神に則り、このスクリプトの作者は、トレーダーが理解し検証できるようにオープンソースで公開しています。作者に敬意を表します!無料で使用することができますが、このコードを投稿で再利用するには、ハウスルールに準拠する必要があります。 お気に入りに登録してチャート上でご利用頂けます。

免責事項

これらの情報および投稿は、TradingViewが提供または保証する金融、投資、取引、またはその他の種類のアドバイスや推奨を意図したものではなく、またそのようなものでもありません。詳しくは利用規約をご覧ください。

チャートでこのスクリプトを利用したいですか?
//@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)