Translate Pine Script (Tradingview) Indicator into MQL4

MQL4 전환

작업 종료됨

실행 시간 14 분
고객의 피드백
great job really fast and he knows exactly what you want
피고용인의 피드백
A clear, understandable description of the assignment. Quick check. Thank you for the order.

명시

 Hi, I need the indicator vortex trend tracker translated into mt4, it needs to be 100% the same, with histogram and colors being darker when there is a clear trend signal 

mql5 doesn't let me insert the link,  but it is vortex trend tracker of profitprogrammers on tradingview

//@version=4

study("Vortex Trend Tracker")

//          INPUT VARIABLES FOR VORTEX: 

vortexLen = input(30, title="Length for Vortex", minval=1)

emaLen = input(10, title="Length of Positive and Negative EMA's", type=input.integer, minval=1)

colorBars = input(true, title="Color Price Bars Based on Vortex?")

plotVLines = input(false, title="Plot VI+ and VI- Lines?")


//          VORTEX CALCULATION:

//Returns positive and negative trendlines. 

vortex(posSum, negSum, vLen)=>

    tRange = sum(atr(1), vLen)

    vmPlus = posSum / tRange

    vmNeg = negSum / tRange

    [vmPlus, vmNeg]


[vPlus, vNeg] = vortex(sum(abs(high - low[1]), vortexLen), sum(abs(low - high[1]), vortexLen), vortexLen)

plusEMA = ema(vPlus, emaLen)

negEMA = ema(vNeg, emaLen)

vDiff = abs(plusEMA - negEMA)


//          PLOTTING:

var color vColor = na

vColor := plusEMA > negEMA and plusEMA >= plusEMA[1] ? #1b5e20 : plusEMA > negEMA and plusEMA < plusEMA[1] ? #a5d6a7 : negEMA >= plusEMA and negEMA > negEMA[1] ? #b71c1c : negEMA > plusEMA and negEMA < negEMA[1] ? #c76a72 : nz(vColor[1])

plot(vDiff, style=plot.style_histogram, color=vColor, linewidth=3, transp=0)

plot(plotVLines ? plusEMA : na, title="VI +", color=color.green, linewidth=2)

plot(plotVLines ? negEMA : na, title="VI -", color=color.red, linewidth=2)

barcolor(colorBars ? vColor : na)


파일:

응답함

1
개발자 1
등급
(132)
프로젝트
178
39%
중재
4
25% / 50%
기한 초과
14
8%
무료
2
개발자 2
등급
(68)
프로젝트
111
26%
중재
17
6% / 71%
기한 초과
15
14%
무료
게재됨: 9 코드
3
개발자 3
등급
(118)
프로젝트
217
49%
중재
1
0% / 0%
기한 초과
25
12%
무료
게재됨: 1 코드
4
개발자 4
등급
(564)
프로젝트
845
73%
중재
15
53% / 13%
기한 초과
193
23%
무료
5
개발자 5
등급
(298)
프로젝트
478
40%
중재
105
40% / 24%
기한 초과
82
17%
로드됨
게재됨: 2 코드

프로젝트 정보

예산
40+ USD