Rewrite the macd(trading view) code on mt5

MQL5 指标 脚本

指定

rewrite the macd(trading view) code on mt5

//@version=5
indicator(title="Moving Average Convergence Divergence", shorttitle="MACD", timeframe="", timeframe_gaps=true)
// Getting inputs
fast_length = input(title = "Fast Length", defval = 12)
slow_length = input(title = "Slow Length", defval = 26)
src = input(title = "Source", defval = close)
signal_length = input.int(title = "Signal Smoothing",  minval = 1, maxval = 50, defval = 9, display = display.data_window)
sma_source = input.string(title = "Oscillator MA Type",  defval = "EMA", options = ["SMA", "EMA"], display = display.data_window)
sma_signal = input.string(title = "Signal Line MA Type", defval = "EMA", options = ["SMA", "EMA"], display = display.data_window)
// Calculating
fast_ma = sma_source == "SMA" ? ta.sma(src, fast_length) : ta.ema(src, fast_length)
slow_ma = sma_source == "SMA" ? ta.sma(src, slow_length) : ta.ema(src, slow_length)
macd = fast_ma - slow_ma
signal = sma_signal == "SMA" ? ta.sma(macd, signal_length) : ta.ema(macd, signal_length)
hist = macd - signal

alertcondition(hist[1] >= 0 and hist < 0, title = 'Rising to falling', message = 'The MACD histogram switched from a rising to falling state')
alertcondition(hist[1] <= 0 and hist > 0, title = 'Falling to rising', message = 'The MACD histogram switched from a falling to rising state')

hline(0, "Zero Line", color = color.new(#787B86, 50))
plot(hist, title = "Histogram", style = plot.style_columns, color = (hist >= 0 ? (hist[1] < hist ? #26A69A : #B2DFDB) : (hist[1] < hist ? #FFCDD2 : #FF5252)))
plot(macd,   title = "MACD",   color = #2962FF)
plot(signal, title = "Signal", color = #FF6D00)


反馈

1
开发者 1
等级
(426)
项目
483
34%
仲裁
25
40% / 44%
逾期
6
1%
繁忙
2
开发者 2
等级
(558)
项目
925
48%
仲裁
301
59% / 25%
逾期
123
13%
已载入
3
开发者 3
等级
(252)
项目
570
36%
仲裁
64
20% / 58%
逾期
147
26%
空闲
4
开发者 4
等级
(236)
项目
440
26%
仲裁
123
21% / 56%
逾期
96
22%
已载入
5
开发者 5
等级
(5)
项目
10
20%
仲裁
0
逾期
0
空闲
6
开发者 6
等级
(52)
项目
96
24%
仲裁
9
22% / 22%
逾期
12
13%
工作中
7
开发者 7
等级
(251)
项目
402
38%
仲裁
82
41% / 20%
逾期
70
17%
工作中
8
开发者 8
等级
(5)
项目
6
17%
仲裁
0
逾期
1
17%
空闲

项目信息

预算
30+ USD

客户

所下订单1
仲裁计数0