UDAY_C_Santhakumar

Momentogram - Wave

This is another way you can plot the Momentum Histograms. This can be manipulated to Wave A, B, C from trade the market.

TTM WAVES - if you can manipulate the settings, this will work. 100%

List of All my Indicators - www.tradingview.com/p/stocks/?sort=recen...

Uday C Santhakumar
オープンソーススクリプト

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

免責事項

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

チャートでこのスクリプトを利用したいですか?
// Created by UCSGEARS on 8/30/2014
//Version 2 for the Momentum Histogram
study(title="UCS_Momentogram - Wave", shorttitle="UCS_Momo-WAVE")
source = close
fastLength1 = input(8, minval=1)
slowLength1 = input(55, minval=1)
signalLength1 = slowLength1

fastLength2 = input(13, minval=1)
slowLength2 = input(89, minval=1)
signalLength2 = slowLength2

fastMA1 = ema(source, fastLength1)
slowMA1 = ema(source, slowLength1)
macd1 = fastMA1 - slowMA1
signal1 = ema(macd1, signalLength1)
hist1 = macd1 - signal1

fastMA2 = ema(source, fastLength2)
slowMA2 = ema(source, slowLength2)
macd2 = fastMA2 - slowMA2
signal2 = ema(macd2, signalLength2)
hist2 = macd2 - signal2
plot(0,color=black, title = "Zero Line")
plot(hist2, color=red, style=histogram, title="Wave 2", linewidth=3)
plot(hist1, color=blue, style=histogram, title="Wave 1", linewidth=3)