blackdog6621

MACD Split Colors

Standard MACD modified to show the histogram in different colors for positive/negative.

Ignore all the extra stuff in the chart, I didn't realize at this point I couldn't change it later!
オープンソーススクリプト

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

免責事項

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

チャートでこのスクリプトを利用したいですか?
study(title="MACD Split Colors", shorttitle="MACD")
src = close
fastLength = input(12, minval=1), slowLength=input(26,minval=1)
signalLength=input(9,minval=1)
fastMA = ema(src, fastLength)
slowMA = ema(src, slowLength)
macd = fastMA - slowMA
signal = sma(macd, signalLength)
hist = macd - signal
pos_hist = max(0, hist)
neg_hist = min(0, hist)
plot(pos_hist, color=green, style=histogram, linewidth=2)
plot(neg_hist, color=red, style=histogram, linewidth=2)
plot(macd, color=teal)
plot(signal, color=orange)