repo32

High Low Yearly

Sorry for the mess above. Not sure how to remove it. It was not what I was looking to post. I added the the clean chart below.

This was requested by "N". It displays the current yearly highs and lows along with the previous years highs and lows. Just a nice way to see the support resistance in all time frames.
オープンソーススクリプト

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

免責事項

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

チャートでこのスクリプトを利用したいですか?
// Written by Robert N.  031015

study("High Low Yearly", overlay=true)

hyl = input(true, title="High Yearly Line")
yhigh = security(tickerid, '12M', high) 
plot(hyl and yhigh ? yhigh :na , title="Yearly_High",style=circles, color=yellow, linewidth=3) 


lyl = input(true, title="Low Yearly Line")
ylow = security(tickerid, '12M', low) 
plot(lyl and ylow ? ylow :na , title="Yearly_Low",style=circles, color=blue, linewidth=3) 

hyl1 = input(true, title="High Yearly Line Previous")
yhigh1 = security(tickerid, '12M', high[1]) 
plot(hyl1 and yhigh1 ? yhigh1 :na , title="Yearly_High",style=circles, color=purple, linewidth=3) 


lyl1 = input(true, title="Low Yearly Line Previous")
ylow1 = security(tickerid, '12M', low[1]) 
plot(lyl1 and ylow1 ? ylow1 :na , title="Yearly_Low",style=circles, color=white, linewidth=3)