Hello, I need someone to convert this already existing indicator into an EA (Expert Advisor)

Job finished

Execution time 2 hours
Feedback from customer
amazing developer
Feedback from employee
perfect

Specification

I need someone to convert this indicator into an ea.     //@version=4
study(title="UT Bot Alerts", overlay = true)
 
// Inputs
a = input(1,     title = "Key Vaule. 'This changes the sensitivity'")
c = input(10,    title = "ATR Period")
h = input(false, title = "Signals from Heikin Ashi Candles")
 
xATR  = atr(c)
nLoss = a * xATR
 
src = h ? security(heikinashi(syminfo.tickerid), timeframe.period, close, lookahead = false) : close
 
xATRTrailingStop = 0.0
xATRTrailingStop := iff(src > nz(xATRTrailingStop[1], 0) and src[1] > nz(xATRTrailingStop[1], 0), max(nz(xATRTrailingStop[1]), src - nLoss),
   iff(src < nz(xATRTrailingStop[1], 0) and src[1] < nz(xATRTrailingStop[1], 0), min(nz(xATRTrailingStop[1]), src + nLoss),  
   iff(src > nz(xATRTrailingStop[1], 0), src - nLoss, src + nLoss)))
 
pos = 0    
pos :=    iff(src[1] < nz(xATRTrailingStop[1], 0) and src > nz(xATRTrailingStop[1], 0), 1,
   iff(src[1] > nz(xATRTrailingStop[1], 0) and src < nz(xATRTrailingStop[1], 0), -1, nz(pos[1], 0)))  
    
xcolor = pos == -1 ? color.red: pos == 1 ? color.green : color.blue  
 
ema   = ema(src,1)
above = crossover(ema, xATRTrailingStop)
below = crossover(xATRTrailingStop, ema)
 
buy  = src > xATRTrailingStop and above  
sell = src < xATRTrailingStop and below
 
barbuy  = src > xATRTrailingStop  
barsell = src < xATRTrailingStop  
 
plotshape(buy,  title = "Buy",  text = 'Buy',  style = shape.labelup,   location = location.belowbar, color= color.green, textcolor = color.white, transp = 0, size = size.tiny)
plotshape(sell, title = "Sell", text = 'Sell', style = shape.labeldown, location = location.abovebar, color= color.red,   textcolor = color.white, transp = 0, size = size.tiny)
 
barcolor(barbuy  ? color.green : na)
barcolor(barsell ? color.red   : na)
 
alertcondition(buy,  "UT Long",  "UT Long")
alertcondition(sell, "UT Short", "UT Short")

Responded

1
Developer 1
Rating
(129)
Projects
180
22%
Arbitration
11
55% / 27%
Overdue
1
1%
Loaded
2
Developer 2
Rating
(10)
Projects
15
33%
Arbitration
0
Overdue
0
Working
3
Developer 3
Rating
(45)
Projects
49
8%
Arbitration
16
13% / 44%
Overdue
3
6%
Loaded
4
Developer 4
Rating
(267)
Projects
403
63%
Arbitration
5
40% / 0%
Overdue
4
1%
Free
5
Developer 5
Rating
(3)
Projects
6
17%
Arbitration
1
0% / 100%
Overdue
0
Working
6
Developer 6
Rating
(23)
Projects
29
66%
Arbitration
1
0% / 0%
Overdue
1
3%
Working
7
Developer 7
Rating
(66)
Projects
143
34%
Arbitration
10
10% / 60%
Overdue
26
18%
Working
8
Developer 8
Rating
(52)
Projects
96
24%
Arbitration
9
22% / 22%
Overdue
12
13%
Free
9
Developer 9
Rating
Projects
1
0%
Arbitration
0
Overdue
0
Free
10
Developer 10
Rating
(555)
Projects
922
48%
Arbitration
300
59% / 25%
Overdue
123
13%
Loaded
Similar orders
I hope this message finds you well. I am in search of a FREE skilled developer to transform three indicators into a fully functional trading robot. These indicators consist of two MACD indicators, each displaying two colors (red and green), along with a RED arrow signal. Here are the specific requirements for the project: The robot should execute trades only when the RED arrow signal appears and both MACD indicators
Hello, Thank you for reviewing the job description. We're in need of an experienced developer to finalize an EA that's currently in progress. We'll provide the source code of the EA for implementing necessary changes to resolve the existing bugs. The EA is primarily based on price action patterns and includes risk management features and an indicator. All required features have been added to the EA; we simply need to
"I'm looking for a talented developer to help implement my custom NT8 strategy. Your expertise is key to the project's success. Are you interested in teaming up for a productive partnership? Let's discuss the details together. Thank you!"
p.p1 {margin: 0.0px 0.0px 12.0px 0.0px; font: 16.0px Times; color: #353535; background-color: #ffffff} p.p2 {margin: 0.0px 0.0px 12.0px 0.0px; font: 16.0px Times; color: #353535; background-color: #ffffff; min-height: 19.0px} I want to be clear before we start, so you are going to build me an expert advisor that works on MT5, that will also require an authorisation to work (like a license key, like the expert advisor
"I'm on the lookout for a proficient developer to help actualize my tailored NT8 strategy. Your mastery in this field is pivotal for the project's success. Would you be open to partnering for a mutually beneficial collaboration? Let's explore the details together. Thank you for considering!"
Hello I have Order Flow Chart & Software Depends on Ninjatrader I want to EA a trading robot that works on different platforms via API Expert NinjaTrader Programmer for Cross-Platform Trading Robot I'm in need of a skilled NinjaTrader programmer to develop a cutting-edge trading robot that seamlessly operates across various platforms via API integration? I want a customized Expert Advisors (EAs) tailored to your
"I'm in search of a skilled developer to bring my customized NT8 strategy to life. Your expertise is crucial for the success of this project. Would you be interested in joining forces for a fruitful collaboration? Let's connect to delve into the specifics together. Much appreciated!"
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
I would like you to create an MT5 indicator and apply bollinger bands on a spread buffer. In MT4 we have iBandsOnArray but in MT5 there is nothing like that. Please find a way to create the Bollinger bands and apply them on a buffer. Just keep it simple. My only requirements are: 1. Close price buffer of EURUSD 2. Close price buffer of GBPUSD 3. Spread buffer which is buffer1 minus buffer2 (EURUSD close price -
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

Project information

Budget
50+ USD
For the developer
45 USD