minorplanet2

NYSE MCCLELLAN OSCILLATOR

The McClellan Oscillator is a breadth indicator derived from Net Advances, the number of advancing issues less the number of declining issues. The McClellan Oscillator is similar to a MACD for the Advance/Decline Line for the NYSE. Signals can be generated with breadth thrusts, centerline crossovers, overall levels and divergences.
オープンソーススクリプト

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

免責事項

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

チャートでこのスクリプトを利用したいですか?
study("NYSE MCCLELLAN OSCILLATOR")
ADV=security("ADVN",period,close)
DEC=security("DECN", period,close)
RANA=1000*((ADV-DEC)/(ADV+DEC))
MA1=ema(RANA,19), MA2=ema(RANA,39)
MCC=MA1-MA2
plot(MCC, color=black, title="MCL Osc", linewidth=3)
hline(0,color=black, linestyle=dotted, title="0 line")