Convert Pine Script indicator to MT5 indicator

MQL5 Experten

Auftrag beendet

Ausführungszeit 1 Tag
Bewertung des Kunden
Great work and fast
Bewertung des Entwicklers
Very nice working experience

Spezifikation

Hey guys I need someone to convert this indicator to a MT5 one.
//@version=5
indicator('TESTJAN', overlay=true)

amplitude = input(title='Amplitude', defval=2)
channelDeviation = input(title='Channel Deviation', defval=2)

showArrows = input(title='Show Arrows', defval=true)
showChannels = input(title='Show Channels', defval=true)

var int trend = 0
var int nextTrend = 0
var float maxLowPrice = nz(low[1], low)
var float minHighPrice = nz(high[1], high)

var float up = 0.0
var float down = 0.0
var float atrHigh = 0.0
var float atrLow = 0.0
var float arrowUp = na
var float arrowDown = na

atr2 = ta.atr(100) / 2
dev = channelDeviation * atr2

highPrice = high[math.abs(ta.highestbars(amplitude))]
lowPrice = low[math.abs(ta.lowestbars(amplitude))]
highma = ta.sma(high, amplitude)
lowma = ta.sma(low, amplitude)

if nextTrend == 1
        maxLowPrice := math.max(lowPrice, maxLowPrice)
        if highma < maxLowPrice and close < nz(low[1], low)
                trend := 1
                nextTrend := 0
                minHighPrice := highPrice
                minHighPrice
else
        minHighPrice := math.min(highPrice, minHighPrice)
        if lowma > minHighPrice and close > nz(high[1], high)
                trend := 0
                nextTrend := 1
                maxLowPrice := lowPrice
                maxLowPrice
if trend == 0
        if not na(trend[1]) and trend[1] != 0
                up := na(down[1]) ? down : down[1]
                arrowUp := up - atr2
                arrowUp
        else
                up := na(up[1]) ? maxLowPrice : math.max(maxLowPrice, up[1])
                up
                atrHigh := up + dev
                atrLow := up - dev
                atrLow
else
        if not na(trend[1]) and trend[1] != 1
                down := na(up[1]) ? up : up[1]
                arrowDown := down + atr2
                arrowDown
        else
                down := na(down[1]) ? minHighPrice : math.min(minHighPrice, down[1])
                down
                atrHigh := down + dev
                atrLow := down - dev
                atrLow

ht = trend == 0 ? up : down

var color buyColor = color.rgb(0, 68, 255)
var color sellColor = color.rgb(255, 115, 0)

htColor = trend == 0 ? buyColor : sellColor
htPlot = plot(ht, title='aghighi signal', linewidth=2, color=htColor)

atrHighPlot = plot(showChannels ? atrHigh : na, title='ATR High', style=plot.style_circles, color=sellColor)
atrLowPlot = plot(showChannels ? atrLow : na, title='ATR Low', style=plot.style_circles, color=buyColor)

fill(htPlot, atrHighPlot, title='ATR High Ribbon', color=sellColor)
fill(htPlot, atrLowPlot, title='ATR Low Ribbon', color=buyColor)

buySignal = not na(arrowUp) and trend == 0 and trend[1] == 1
sellSignal = not na(arrowDown) and trend == 1 and trend[1] == 0

plotshape(showArrows and buySignal ? atrLow : na, title='Arrow Up', style=shape.triangleup, location =location.absolute, size=size.tiny, color=buyColor)
plotshape(showArrows and sellSignal ? atrHigh : na, title='Arrow Down', style=shape.triangledown, location=location.absolute, size=size.tiny, color=sellColor)

alertcondition(buySignal, title='Alert: Signal Buy', message=' Signal Buy')
alertcondition(sellSignal, title='Alert: Signal Sell', message=' Signal Sell')


Bewerbungen

1
Entwickler 1
Bewertung
(69)
Projekte
113
53%
Schlichtung
4
25% / 75%
Frist nicht eingehalten
15
13%
Arbeitet
2
Entwickler 2
Bewertung
(2)
Projekte
3
0%
Schlichtung
1
100% / 0%
Frist nicht eingehalten
0
Arbeitet
3
Entwickler 3
Bewertung
(26)
Projekte
36
58%
Schlichtung
2
0% / 50%
Frist nicht eingehalten
2
6%
Arbeitet
4
Entwickler 4
Bewertung
Projekte
1
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
5
Entwickler 5
Bewertung
(252)
Projekte
570
36%
Schlichtung
64
20% / 58%
Frist nicht eingehalten
147
26%
Frei
6
Entwickler 6
Bewertung
(126)
Projekte
158
35%
Schlichtung
4
25% / 50%
Frist nicht eingehalten
13
8%
Frei
7
Entwickler 7
Bewertung
(45)
Projekte
57
30%
Schlichtung
0
Frist nicht eingehalten
2
4%
Beschäftigt
8
Entwickler 8
Bewertung
(267)
Projekte
403
63%
Schlichtung
5
40% / 0%
Frist nicht eingehalten
4
1%
Frei
9
Entwickler 9
Bewertung
(31)
Projekte
50
36%
Schlichtung
4
25% / 50%
Frist nicht eingehalten
6
12%
Arbeitet
10
Entwickler 10
Bewertung
(167)
Projekte
215
57%
Schlichtung
8
25% / 25%
Frist nicht eingehalten
7
3%
Arbeitet
11
Entwickler 11
Bewertung
(67)
Projekte
74
7%
Schlichtung
31
10% / 58%
Frist nicht eingehalten
6
8%
Arbeitet
12
Entwickler 12
Bewertung
(145)
Projekte
161
40%
Schlichtung
5
0% / 80%
Frist nicht eingehalten
8
5%
Arbeitet
13
Entwickler 13
Bewertung
(250)
Projekte
399
38%
Schlichtung
82
41% / 20%
Frist nicht eingehalten
69
17%
Überlastet
14
Entwickler 14
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
15
Entwickler 15
Bewertung
(555)
Projekte
922
48%
Schlichtung
300
59% / 25%
Frist nicht eingehalten
123
13%
Beschäftigt
Ähnliche Aufträge
MQL5 EA - One sequence of Orders from Order1 up to Order10. Restart at next Gridline. The EA main goal is to have a sequence of Orders from 1 up to 10. Example: If price of Order1 = Order3, Order3 can be open only after price hit Order2 first; the Order2 will only open after Order1 is already open, the Order3 will only open after Order2 is already open, etc. The restart of the EA/sequence will occur only after the
I HAVE A FUNCTIONAL MT5 EA (MQL5) THAT IS BASED ON CANDLE OPEN BUT I WOULD LIKE TO AUTOMATE IT WITH OTHER PROFITABLE STRATEGIES REQUIREMENT SPECIFICATION 1. I want an experienced developer to integrate a strategy to analyse the market and open buy only trade or sell only trade according to the direction of the analysis. 2. The modification and strategy should combine many confirmations that ensure high win rates of
We are looking for an experienced individual to assist in building an MT4 signal providing indicator with a data feed of NSE (National Stock Exchange - Bombay). The indicator should be capable of analyzing real-time market data and generating accurate trading signals for different financial instruments listed on the NSE. The successful candidate will need to have a strong understanding of MT4 programming, as well as
The project: I want to speculate on the price of the USD. I have 1800$ and I want to spread it as evenly as possible across 7 different symbols. Symbol Lots 1.GBP/USD 0.07 2.EUR/USD 0.09 3. USD/CHF 0.09 4. USD/CAD 0.09 5. USD/JPY 0.09 6. AUD/USD 0.1 7. NZD/USD 0.11 For position GBP/USD, EUR/USD, AUD/USD, NZD/USD I want to enter a buy. For USD/CHF, USD/CAD, USD/JPY I want to enter a sell. The lot sizes are as noted
I am in search of a skilled MQL5 developer with a proven ability to optimize trading robots across various assets, including synthetic indices like V75, Boom and Crash, gold, US30, US100, and more. I'm looking for an experienced developer to enhance my multi-asset trading EA, which was originally developed exclusively for V75 and is based on the smart money concept. The developer must be free in taking up the job
This is a Ready Made grid Automatic EA 1. need some bug fixing and little modifcation this ea has some bug like -Takeing Random Trade after Mt4 Restart . also not flow set grid distance. like if i set 300pips grid distance, some time it place trade at 400 pips distance . fix this bug 2. Add one more anti-martingle Engine , LIKE Engine1-for martingle and Engine 2- Anti-martingle bot Engine place trade at the same time
About the file i need I have ea ex4 file but it use to set buystop or sellstop oders etc now what I want is to fit the propfirm am using because the propfirm am using have a lot size consistency rules so what I need is even if the ea set multiple buystop the file will only allow the ea to pick 2 positions and automatically delete the nearest limit Oder it can only allow the ea buystop or new position once the two
Objective: To Create an EA based on an EMA cross Strategy that utilizes martingale account management strategy with multiple profiles to better manage risk and scale safely Strategy Concept: This strategy was created around Volatility Index 75 on the 5 minute chart. It was Observed that this Index tends to frequently form very strong trends with short periods of consolidation. On applying a 10 period
I currently have an EA (.ex5 file format) running happily on MT5 system. I would like someone to convert it to MQL4 (.ex4 file format) so that I can run that same EA on the MT4 system
Hello, I'm looking for a trade copier from MT5 to NT8. The copier should be able to: 1.) Open/closed trade based on the position in MT5. 2.) Fast executions of trades. 3.) Adjustable Lot Size

Projektdetails

Budget
50+ USD
Für die Entwickler
45 USD