在脚本中搜索"macd"
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.
Moving Average Convergence DivergenceA MACD with option for logarithmic or regular scale.
This indicator presents bullish or bearish 'flags' based on the most recent signal cross and asset price divergence. If the price moves up and the macd continues trending down, a bearish divergence is flagged. if the price moves down and the macd continues moving up, a bullish divergence is flagged.
VMACD IndicatorVolume-Weighted MACD Indicator. You can turn volume-weighted off to get "regular" MACD, and you can change the scaling of the histogram to make it stand out more.
MACD+Features:
Allows for each MA to use EMA, WMA or SMA independently.
Adds a configurable fill between the MACD line and Signal lines.
Volume Weighted MACD with Named PlotsLiterally just copied VWMACD but named the plot lines to make setting alerts more clear.