Sirdiamond21

Didi Index

Indicator developed by Brazilian and analyst Odir Aguiar (Didi), consists of "Moving Averages", known for the famous needles Didi, which allows the visualization of reversal points.

The concept is very simple, when you insert 3 Moving Averages on display, one of three periods, an 8 and the other 20, there appears the formation of the indicator which works on an axis or center line 0. The needles occur when the intersection of averages comes closest to the line 0.
オープンソーススクリプト

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

免責事項

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

チャートでこのスクリプトを利用したいですか?
//Begin
study("Didi Index")
short = 3, mid = 8, long = 20
DidiLonga = sma(close, long) - sma(close, mid)
DidiCurta = sma(close, short) - sma(close, mid)

plot(DidiLonga, color=#ff0000)
plot(DidiCurta, color=#009900)
plot(0)
//End