Required an expert adviser for creating bot based on indicator

Spécifications

Below is the pine eidtor script convert it to MQL5 coding language and create bot based on following condition

1. This all should be on 5-minute chart timeframe 

2. For Buy side, buy after closing of second candle when buy signal is given and exit buy position when sell signal is given.

3. For sell side, sell after closing of second candle when sell signal is given and exit sell position when buy signal will be given.

4. for buy position lot size should be 0.01

5. for sell position lot size should be 0.01


//@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")

Répondu

1
Développeur 1
Évaluation
(21)
Projets
20
10%
Arbitrage
2
50% / 50%
En retard
0
Gratuit
2
Développeur 2
Évaluation
(204)
Projets
331
16%
Arbitrage
23
35% / 30%
En retard
17
5%
Occupé
3
Développeur 3
Évaluation
(36)
Projets
45
36%
Arbitrage
0
En retard
0
Gratuit
4
Développeur 4
Évaluation
(9)
Projets
11
45%
Arbitrage
0
En retard
0
Gratuit
5
Développeur 5
Évaluation
(97)
Projets
119
39%
Arbitrage
9
89% / 0%
En retard
0
Travail
6
Développeur 6
Évaluation
(42)
Projets
62
8%
Arbitrage
12
58% / 42%
En retard
1
2%
Gratuit
7
Développeur 7
Évaluation
Projets
0
0%
Arbitrage
0
En retard
0
Gratuit
8
Développeur 8
Évaluation
(10)
Projets
25
28%
Arbitrage
3
0% / 0%
En retard
1
4%
Chargé
9
Développeur 9
Évaluation
Projets
0
0%
Arbitrage
0
En retard
0
Gratuit
10
Développeur 10
Évaluation
(62)
Projets
190
73%
Arbitrage
4
100% / 0%
En retard
1
1%
Gratuit
11
Développeur 11
Évaluation
(163)
Projets
232
22%
Arbitrage
16
63% / 19%
En retard
1
0%
Occupé
Commandes similaires
Modification of EA 30 - 50 USD
i have my personal EA This EA sometimes opens a new trade without closing the opposite trade in the live market But everything works fine in the strategy tester. i need Our EA should be execution 100%
Both way entry with crossover of Multiple EMAs with additional features. Exit shall also be consider based on EMAs, Multiple lot with multiple numbers shall have to consider. News filtering has to be considered with run time and trailing stop loss
Need a Coding Expert. Fully automated Robot for Trading with minimal losses. It should be able to open/close trades automatically according to the strategy. Also, there should be an option to select maximum leverage for Trading FOREX, COMMODITIES, ENERGIES, etc. The forecast reports of trading strategies to be shared automatically to a specified Email, WhatsApp and Telegram accounts. TO DEVELOP A TRADING MANAGEMENT
Poverty 30+ USD
``` def moving_average_crossover(prices, short_window, long_window): short_ma = prices.rolling(window=short_window).mean() long_ma = prices.rolling(window=long_window).mean() signals = np.where(short_ma > long_ma, 1, 0) signals = np.where(short_ma < long_ma, -1, signals) return signals # Example usage: prices = pd.Series([...]) # Replace with your price data short_window = 50 long_window = 200 signals
Robot 30+ USD
numbers of trad pre day, atr stoplost breakeven opening of odrtger buy = Upper neutral leve 40, previous less than level 50, new >= level 50 sell = Lower neutral level 60, previous less than level 50, new => level 50
We need a skilled programmer to create a bot following a specific strategy. The role involves designing and developing an efficient bot that meets outlined goals. Compensation for this project is between $100 and $200. If you have experience in bot development and strong programming skills, please contact me. Good luck
I have need my .ex4 file EA to fix. I have .ex4 file the EA with me. Last few years, it was working fine. I need you to decode or fix it so that it takes trades like before. I need you to provide me with .mq4 file of the EA. I will verify it takes the trades same, and confirm the jobs is done. Hope You may easily do the jobs. Best wishes
Brief description. mt4 must be connected via binary.com API. Only for binary trade. Forex pair . Rise/Fall option only. Maximum trade limited options should be given. Profit option should be given. Martingale system. Compounding system Candlestick time counter should be given. There will be two types of signals. A candle stick will come with an arrow symbol. Arrow symbol will appear below another chart. You can
BULK 30+ USD
THE EA SCALPER IS THE BEST IN THE MARKET,IS VERY GOOD AND FRRSIBLE TO USED fufghggfck hfghjjkyhv hfghjjkyhv hi go high b high just hug gen hotty good diff high class good haha
Description: I am looking for an experienced developer to build an expert advisor, indicator, or automated trading system based on my strategic trading strategy. The system needs to be programmed using either MQ4, Python, or C++ . Project Details: I will provide you with the VY expert advisor file, which is part of the existing framework. The project involves breaking down and implementing my specific trading

Informations sur le projet

Budget
50+ USD
Délais
de 1 à 10 jour(s)

Client

Commandes passées1
Nombre d'arbitrages0