명시
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
등급
프로젝트
618
33%
중재
35
37%
/
49%
기한 초과
10
2%
바쁜
2
등급
프로젝트
945
47%
중재
309
58%
/
27%
기한 초과
125
13%
무료
3
등급
프로젝트
593
35%
중재
64
20%
/
58%
기한 초과
147
25%
무료
게재됨: 1 기고글, 22 코드
4
등급
프로젝트
460
26%
중재
140
20%
/
59%
기한 초과
100
22%
작업중
5
등급
프로젝트
32
44%
중재
1
0%
/
0%
기한 초과
0
무료
6
등급
프로젝트
102
23%
중재
12
25%
/
17%
기한 초과
13
13%
무료
7
등급
프로젝트
469
39%
중재
101
41%
/
24%
기한 초과
77
16%
로드됨
게재됨: 2 코드
8
등급
프로젝트
8
13%
중재
0
기한 초과
1
13%
무료
게재됨: 1 코드
프로젝트 정보
예산
30+ USD