Indicators: Volume-Weighted MACD Histogram & Sentiment Zone OscVolume-Weighted MACD Histogram
-------------------------------------------------------------------------------------
Volume-Weighted MACD Histogram, first discussed by Buff Dormeier, is a modified version of MACD study. It calculates volume-averaged Close price for finding the histogram.
More info:
www.moneyshow.com
Sentiment Zone Oscillator
-------------------------------------------------------------------------------------
Sentiment Zone Oscillator, developed by Walid Khalil, is a complementing oscillator to VZO and PZO.
To quote Walid:
>> The sentiment zone oscillator (SZO) is a leading contrary oscillator that measures the extreme emotions of a single market or share.
>> It measures and defines both extremes, bullishness (overoptimism) and bearishness (overpessimism), that could lead to a change
>> in sentiment, eventually changing the trend of the time frame under study. The SZO was devised on the belief that after several waves
>> of rising prices, investors begin to get bullish on the stock with increasing confidence since the price has been rising for some time.
>> The SZO measures that bullishness/bearishness and marks overbought/oversold levels.
SZO has its own oversold/overbought bands. Also, when SZO goes above 7, it indicates extreme optimism. When the SZO goes below -7, it indicates extreme pessimism.
More info: www.traders.com
How to import / use custom indicators from this chart?
-------------------------------------------------------------------------------------
PDF: drive.google.com
Search in scripts for "macd"
MACD+RSI by NiksMACD and RSI combined in one indicator. This is to allow you to add more than 3 indicators in free version of Trading view
macZLSMAMacd that shows instantaneous trend using ZLSMA. This crossover has the ability to reveal trend directions before it happens.
MACD Luckscout versionMACD Luckscout version
How to use :
We should look for divergence and/or convergence.
MACD Strategy by ForbesStrategy นี้เขียนขึ้นมาจากบทความของนิตยสารธุรกิจ ชื่อดัง Forbes
สำหรับผู้ที่อยากอ่านสามารถค้นหาได้โดยใช้คำค้นว่า Bitcoin Trading Strategy For Passive Investors
สำหรับผู้ทีจะทอสอบ backtest ให้ตั้งค่า commission (หรือค่าธรรมเนียมการเทรดด้วย) เพื่อให้ผลลัพท์ใกล้เคียงกับความเป็นจริงมากที่สุด
อย่างไรก็ตามจากการ backtest นั้น พบว่า Strategy นี้เหมาะกับ Timeframe Day มากที่สุด และโดยส่วนตัวคิดว่าเหมาะสำหรับการซื้อขายแบบ Spot เท่านั้น
MACD + RSI + EMA + SMA + Ichimoku + overbought + buy, sell +Doji// MACD + EMA 200 *** buy and sell strategy (RSI, EMA, SMA) *** Doji Harami *** overbought and oversold *** trend direction *** divergence *** Ichimoku
Use this script in time 1h
MACD + RSI TSA simple strategy that use EMAs convergence/divergence and RSI peeks to take position. Fractals are really useful to positioning your stop loss.
It works well on commodities and forex markets.
MACD with LSME and triple EMAMACD - with each MA defined as follows:
ema(ema(ema(LSMA(src,len1),len2),len2)len2)
Exponential Moving Average Convergence/DivergenceMACD modified with exponential moving averages. Simple.
eswaran ab//@version=5
strategy("MACD Strategy", overlay=true)
fastLength = input(12)
slowlength = input(26)
MACDLength = input(9)
MACD = ta.ema(close, fastLength) - ta.ema(close, slowlength)
aMACD = ta.ema(MACD, MACDLength)
delta = MACD - aMACD
if (ta.crossover(delta, 0))
strategy.entry("MacdLE", strategy.long, comment="MacdLE")
if (ta.crossunder(delta, 0))
strategy.entry("MacdSE", strategy.short, comment="MacdSE")
//plot(strategy.equity, title="equity", color=color.red, linewidth=2, style=plot.style_areabr)
Myx.Mir_ MACD.V2 ][ c/w Hist.Color & LabelMoving average convergence divergence ( MACD ) is commonly and widely used for Technical Analysis .
// Basis- based on default setting
macdLine, signalLine, histLine = default setting
with additional "cosmetic/ Makeup"
1) for 4R1G set up Trader. Histogram color as follows:-
a) if Hist => 0 = Hist > Hist ? color.green : na, Hist < Hist ? color.red : na
b) if Hist <= 0 = Hist < Hist ? color.green : na, Hist > Hist ? color.red : na
2) crossover MACD Line, SignalLine- with label "EN" / "EX"
Do not follow the signal blindly. Trader's should be able to identify the trend whether there is uptrend, sideways and downtrend.
Entry and/or Exit are based on Trader's risk appetite.