작업 종료됨
실행 시간 3 일
피고용인의 피드백
5+
명시
Hi,
Is there anyone able to convert adx by cobra from TradingView to MT5?
study("ADX and DI") len = input(title="Length", type=integer, defval=3) len1 = input(title="Length1", type=integer, defval=1) th = input(title="threshold", type=integer, defval=20) TrueRange = max(max(high-low, abs(high-nz(close[1]))), abs(low-nz(close[1]))) DirectionalMovementPlus = high-nz(high[1]) > nz(low[1])-low ? max(high-nz(high[1]), 0): 0 DirectionalMovementMinus = nz(low[1])-low > high-nz(high[1]) ? max(nz(low[1])-low, 0): 0 SmoothedTrueRange = nz(SmoothedTrueRange[1]) - (nz(SmoothedTrueRange[1])/len) + TrueRange SmoothedDirectionalMovementPlus = nz(SmoothedDirectionalMovementPlus[1]) - (nz(SmoothedDirectionalMovementPlus[1])/len) + DirectionalMovementPlus SmoothedDirectionalMovementMinus = nz(SmoothedDirectionalMovementMinus[1]) - (nz(SmoothedDirectionalMovementMinus[1])/len) + DirectionalMovementMinus DIPlus = SmoothedDirectionalMovementPlus / SmoothedTrueRange * 100 DIMinus = SmoothedDirectionalMovementMinus / SmoothedTrueRange * 100 DX = abs(DIPlus-DIMinus) / (DIPlus+DIMinus)*100 ADX = sma(DX, len) //Skuska crosscall = (DIPlus > DIMinus) crossput = (DIMinus > DIPlus) DIPcross = sma(crosscall, len1) DIPput = sma(crossput, len1) DIPOVB = (DIPlus > 60) DIMOVS = (DIMinus > 60) bgcolor(DIMOVS ? lime : na, transp=40) bgcolor(DIPOVB ? orange : na, transp=20) plot(DIPlus, color=green, linewidth=3, title="DI+") plot(DIMinus, color=red, linewidth=3, title="DI-") plot(ADX, color=white, linewidth=1, title="ADX") hline(th, color=white, linewidth=1, linestyle=dashed) bgcolor(DIPcross ? green : na, transp=60) bgcolor(DIPput ? red : na, transp=60)
We can discuss about the budget.
Thank you!
응답함
1
등급
프로젝트
1295
67%
중재
84
26%
/
49%
기한 초과
338
26%
무료
2
등급
프로젝트
239
70%
중재
3
67%
/
33%
기한 초과
20
8%
무료
3
등급
프로젝트
44
61%
중재
0
기한 초과
0
무료
4
등급
프로젝트
53
17%
중재
7
0%
/
100%
기한 초과
5
9%
무료
5
등급
프로젝트
72
22%
중재
13
46%
/
15%
기한 초과
5
7%
무료
6
등급
프로젝트
845
73%
중재
15
53%
/
13%
기한 초과
193
23%
무료
7
등급
프로젝트
566
26%
중재
24
42%
/
38%
기한 초과
85
15%
무료
게재됨: 6 코드
8
등급
프로젝트
945
47%
중재
309
58%
/
27%
기한 초과
125
13%
무료
9
등급
프로젝트
146
34%
중재
13
8%
/
62%
기한 초과
26
18%
무료
게재됨: 6 코드
10
등급
프로젝트
76
33%
중재
9
78%
/
11%
기한 초과
7
9%
무료
게재됨: 2 코드
프로젝트 정보
예산
30 - 100 USD