Pinescritp to mt5 EA - Urgent

MQL5 Experts Converting

Specification

want to comvert the below code into mt5 EA 


below find the same again 


scolor = true

HiLoLen = 70

ShowPACexit = false

UseBigArrows = false

filterEMA200 = true

ShowEMA12_Channel = true

ShowEMA36_Ribbon = true

//ShowPAC = HiLoLen > 30 ? ShowEMA36_Ribbon ? false : ShowPAC_ : ShowEMA12_Channel ? false : ShowPAC_

ShowPivots = true

ShowPivotLabels = true

ShowHHLL_ = false

ShowHHLL = ShowPivots ? false : ShowHHLL_

ShowFractals_ = true

ShowFractals = ShowPivots ? false : ShowFractals_

ShowFractalLevels = false

filterBW_ = false

filterBW = ShowPivots ? true : filterBW_

src = input(close, title='source')

BG = input.string(defval='TYPE 1', title='TYPE', options=['TYPE 1', 'TYPE 2', 'TYPE 3'])

len = BG == 'TYPE 1' ? 89 : BG == 'TYPE 2' ? 200 : BG == 'TYPE 3' ? 633 : na

//len = input(minval=1, defval=21, title="length")

ema = ta.ema(src, len)


DodgerBlue = #1E90FF


close_ = close  //security(ticker, period, close,  barmerge.gaps_off, barmerge.lookahead_on)

open_ = open  //security(ticker, period, open, barmerge.gaps_off, barmerge.lookahead_on)

high_ = high  //security(ticker, period, high, barmerge.gaps_off, barmerge.lookahead_on)

low_ = low  //security(ticker, period, low, barmerge.gaps_off, barmerge.lookahead_on)

exitClose = close_  //UseHAexit ? security(heikinashi(tickerid), period, close) : close_

exitOpen = open_  //UseHAexit ? security(heikinashi(tickerid), period, open)  : open_

isRegularFractal(mode) =>

    ret = mode == 1 ? high_[5] < high_[4] and high_[4] < high_[3] and high_[3] > high_[2] and high_[2] > high_[1] : mode == -1 ? low_[5] > low_[4] and low_[4] > low_[3] and low_[3] < low_[2] and low_[2] < low_[1] : false

    ret


isBWFractal(mode) =>

    ret = mode == 1 ? high_[5] < high_[3] and high_[4] < high_[3] and high_[3] > high_[2] and high_[3] > high_[1] : mode == -1 ? low_[5] > low_[3] and low_[4] > low_[3] and low_[3] < low_[2] and low_[3] < low_[1] : false

    ret

//  ||-----------------------------------------------------------------------------------------------------||


// MA Colour finder for EMA Ribbon plot.

maColor(maBase, ma, maRef) =>

    change_1 = ta.change(ma)

    change_2 = ta.change(ma)

    change_3 = ta.change(ma)

    ta.change(ma) >= 0 and maBase > maRef ? color.teal : change_1 < 0 and maBase > maRef ? color.maroon : change_2 <= 0 and maBase < maRef ? color.red : change_3 >= 0 and maBase < maRef ? color.green : color.gray


pacC = ta.ema(close_, HiLoLen)

pacL = ta.ema(low_, HiLoLen)

pacU = ta.ema(high_, HiLoLen)


EMA05 = ta.ema(close_, 05)

EMA11 = ta.ema(close_, 11)

EMA12 = ta.ema(close_, 12)

EMA15 = ta.ema(close_, 15)

EMA18 = ta.ema(close_, 18)

EMA21 = ta.ema(close_, 21)

EMA24 = ta.ema(close_, 24)

EMA27 = ta.ema(close_, 27)

EMA30 = ta.ema(close_, 30)

EMA33 = ta.ema(close_, 33)

EMA36 = ta.ema(close_, 36)

EMA75 = ta.ema(close_, 75)

EMA89 = ta.ema(close_, 89)

EMA180 = ta.ema(close_, 180)

EMA200 = ta.ema(close_, 200)

EMA540 = ta.ema(close_, 540)

EMA633 = ta.ema(close_, 633)


bColour = close >= pacU ? color.green : close <= pacL ? color.red : color.gray

bColour0 = close >= pacU ? 1 : close <= pacL ? -1 : 0

barcolor(scolor ? bColour : na, title='Bar Colours')

Responded

1
Developer 1
Rating
(3)
Projects
1
0%
Arbitration
2
0% / 100%
Overdue
0
Working
2
Developer 2
Rating
(367)
Projects
462
40%
Arbitration
82
37% / 33%
Overdue
13
3%
Loaded
3
Developer 3
Rating
(126)
Projects
158
35%
Arbitration
4
25% / 50%
Overdue
13
8%
Working
4
Developer 4
Rating
(185)
Projects
190
27%
Arbitration
0
Overdue
3
2%
Free
5
Developer 5
Rating
(169)
Projects
218
57%
Arbitration
9
22% / 22%
Overdue
7
3%
Working
6
Developer 6
Rating
(38)
Projects
50
10%
Arbitration
1
0% / 0%
Overdue
8
16%
Free
7
Developer 7
Rating
(250)
Projects
400
38%
Arbitration
82
41% / 20%
Overdue
69
17%
Loaded
8
Developer 8
Rating
(270)
Projects
407
63%
Arbitration
5
40% / 0%
Overdue
4
1%
Working
Similar orders
Requirement specification 1. Which pair to trade? Boom 300 and Crash 300, two EAs for both as minimum lot size is different 2. Which time frame to trade? D1 Chart. Trade any minute within trading day, within time window allowed (feature 7 below) 3. When to SELL ? a) when ATR(1) D1 (within the time specified in feature 7 below) reaches a value that is 75% of ATR (5) D1 and b) current price of asset is above its
I want to build an EA based on gold stuff indicator along with support and resistance indicator. It should check parameters according to what I provide and open and close trades and in addition functions like trailing stop, breakeven, money management, manual lot size adjustments, tp , martingale strategy should be there. Its a small work i required with 2/3 conditions
I would like this mt4 Grid EA to be converted to mt5. I would like to add this functionality: 1. Make it multicurrency - trade on all pairs. Option to turn pairs on and off trough an input variable. 2. Add a section to specify the range in which the EA may trade, based on the trading range for each pair in the previous x days, weeks, or months. Option to turn this on or off through input variable.. 3. Add a section
I am looking for an EA. It should open a trade on close of candle. If it is red candle, the trade should be sell and the SL should be high of the close candle. If it is green candle, the trade should be buy and the SL should be low of the close candle. The risk should have options 1)percentage of the capital 2)Fixed amount 3)fixed lot size. TP should be in ratio and can be inputed like 1:1 ,1:1.5 etc
Forex Advanced Risk Management : With the new Fixed Lot and Risk Percentage modes, tailor your trading to align with your risk tolerance. The system now allows you to define your risk down to minute detail, ensuring that each trade is in harmony with your financial strategy. Dynamic Trend Configuration : Version 2.0 comes with a refined algorithm selection that seamlessly adapts to market trends. Whether you choose a
please code me an EA in mql5 syntax with a magic number, lot size, SL and TP in USD amount. use the universaloscillator indicator. A buy signal is given when the blue colored Universal Oscillator cloud gets displayed on the chart. Initiate a buy transaction and set a stop order below support or when a set TP is set or when the red coloured cloud appears. A sell signal is given when the red colored Universal
Hi, I am looking for a scalping bot, that will have below criteria: 1. Take a position in the direction of the market with 1 STANDARD LOT. 2. Wait for 125 seconds after entering the position. 3. Exit the position when the position shows $10 profit. 4. Scan multiple leading currencies for such setups. 5. More than 5 positions should not be open at a time. 6. Exit the position if the floating loss exceeds $100. 7
制作者需要会讲中文国语,有图形用户界面的经验(GUI),能制作整体控制面板和子面板 用来手动输入设置EA参数, 配合:网格,对冲,马丁加仓等. 显示文字为中文繁体或者英文切换.细节后谈. "Looking for a developer with strong background in graphical user interface (GUI) and capable of creating a grid trading panel for both MT5 and MT4. The code source needs to be provided. Detailed information will be provided later "
uses three indicators, bollinger bands, macd and SMA. The expert should be able to pick valuable trades using these three indicators and execute the trades. It should also manage the trades using a stop loss/trailing stop loss function
DEAR DEVELOPERS, TO ANYONE WHO WOULD LIKE TO SHARE IN THEIR SUCCESS IIN TRADING AND DEVELPMENT OF PROFITABLE EA. I NEED A READY AN AUTOMATIC EA THAT I CAN USE ON MY LIVE TRADING ACCOUNT. THIS EXPERT ADVICE SHOULD TRADES ALL INSTRUMENTS AND CAN COMPUND PROFITS THAT CAN ATLEAST MAKE 100% ROI MONTHLY. AGAIN THIS SHOULD BE WORKABLE EA WITH PROVE OF STEADY RESULTS AND RELATIVE DRAWDOWN. THE EA SHOULD WORK ON VPS 24/7

Project information

Budget
30 - 100 USD
For the developer
27 - 90 USD