Auftrag beendet
Ausführungszeit 21 Stunden
Spezifikation
i need to convert a TradingView (PineScript) indicator to MQL4
name of the indicator is "Donchian Trend Ribbon"
the source code will be below.
visuals are important. so make sure the developed indicator will have the visuals
all ordinal input should be represented.
General conditions
write clear and well commented code.
delivery should be within 2 days.
deliveries are the indicator ex4 and the developed source code mq4.
the pine source code:
//@version=4
study("Donchian Trend Ribbon", precision = 0)
dlen = input(defval = 20, title = "Donchian Channel Period", minval = 10)
dchannel(len)=>
float hh = highest(len)
float ll = lowest(len)
int trend = 0
trend := close > hh[1] ? 1 : close < ll[1] ? -1 : nz(trend[1])
dchannelalt(len, maintrend)=>
float hh = highest(len)
float ll = lowest(len)
int trend = 0
trend := close > hh[1] ? 1 : close < ll[1] ? -1 : nz(trend[1])
maintrend == 1 ? trend == 1 ? #00FF00ff : #00FF009f :
maintrend == -1 ? trend == -1 ? #FF0000ff : #FF00009f :
na
maintrend = dchannel(dlen)
plot( 5, color = dchannelalt(dlen - 0, maintrend), style = plot.style_columns, histbase= 0)
plot(10, color = dchannelalt(dlen - 1, maintrend), style = plot.style_columns, histbase= 5)
plot(15, color = dchannelalt(dlen - 2, maintrend), style = plot.style_columns, histbase=10)
plot(20, color = dchannelalt(dlen - 3, maintrend), style = plot.style_columns, histbase=15)
plot(25, color = dchannelalt(dlen - 4, maintrend), style = plot.style_columns, histbase=20)
plot(30, color = dchannelalt(dlen - 5, maintrend), style = plot.style_columns, histbase=25)
plot(35, color = dchannelalt(dlen - 6, maintrend), style = plot.style_columns, histbase=30)
plot(40, color = dchannelalt(dlen - 7, maintrend), style = plot.style_columns, histbase=35)
plot(45, color = dchannelalt(dlen - 8, maintrend), style = plot.style_columns, histbase=40)
plot(50, color = dchannelalt(dlen - 9, maintrend), style = plot.style_columns, histbase=45)
//end
Bewerbungen
1
Bewertung
Projekte
985
46%
Schlichtung
33
36%
/
36%
Frist nicht eingehalten
98
10%
Arbeitet
Veröffentlicht: 6 Beispiele
2
Bewertung
Projekte
364
32%
Schlichtung
34
41%
/
29%
Frist nicht eingehalten
108
30%
Frei
Veröffentlicht: 1 Beispiel
3
Bewertung
Projekte
597
35%
Schlichtung
64
20%
/
58%
Frist nicht eingehalten
147
25%
Frei
Veröffentlicht: 1 Artikel, 22 Beispiele
4
Bewertung
Projekte
640
33%
Schlichtung
41
41%
/
46%
Frist nicht eingehalten
11
2%
Beschäftigt
5
Bewertung
Projekte
20
10%
Schlichtung
8
38%
/
38%
Frist nicht eingehalten
3
15%
Arbeitet
6
Bewertung
Projekte
243
74%
Schlichtung
7
100%
/
0%
Frist nicht eingehalten
1
0%
Frei
Veröffentlicht: 1 Artikel
7
Bewertung
Projekte
1
0%
Schlichtung
1
0%
/
0%
Frist nicht eingehalten
0
Frei
8
Bewertung
Projekte
3362
68%
Schlichtung
77
48%
/
14%
Frist nicht eingehalten
342
10%
Frei
Veröffentlicht: 1 Beispiel
9
Bewertung
Projekte
460
26%
Schlichtung
140
20%
/
59%
Frist nicht eingehalten
100
22%
Arbeitet
10
Bewertung
Projekte
4
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
Projektdetails
Budget
37+ USD
Ausführungsfristen
bis 2 Tag(e)