OPEN-SOURCE SCRIPT

Last 4-Hour High and Low

//version=5
indicator("Last 4-Hour High and Low", overlay=true)

// Get the high and low values for the last 4 hours (240 minutes)
high_4h = request.security(syminfo.tickerid, "240", high)
low_4h = request.security(syminfo.tickerid, "240", low)

// Plot the high and low values for the last 4 hours
plot(high_4h, color=color.green, linewidth=2, title="Last 4-Hour High")
plot(low_4h, color=color.red, linewidth=2, title="Last 4-Hour Low")
FractalmultitimeframePivot points and levels

オープンソーススクリプト

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

チャートでこのスクリプトを利用したいですか?

免責事項