LeMogwai

GRIB Trendline

GRIB Trendline show the distance betwen the price and the SAR with the GRIB settings in percentage. It highlight the elasticity of the wave. It's designed to be used with trendlines to spot the bottoms and the tops.
More explanation here :
and here :

note : do not use "selldot" and "buydot", i was testing something and gave up about the idea

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

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

免責事項

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

チャートでこのスクリプトを利用したいですか?
study(title="GRIB Trendline", shorttitle="GRIB Trend")
source = close
start = input(0.057)
increment = input(0.005)
maximum = input(2)
out = sar(start, increment, maximum)
price = ((high+low)/2)
plot(price<out?-((out-low)/price)*100:((high-out)/price)*100, style=line, transp=70, color=white,linewidth=2)