Convert Pinescript into an MT4 EA

MQL4 Эксперты

Техническое задание

Hi



I need this Indicator from Trade View made into an MT4 Expert Advisor


The EA needs to display on the chart the same as on Tradeview, note arrows show where the trade was triggered on the Candle.



Main thing i have found is the Lime green Fast Moving Average line needs to maintain the Square look Form/Structure as in below pic



1/ The EA needs to check it isn't missing signals as it may need to constantly re fresh to maintain Square form ?

2/ On each new signal the EA needs to check a Trade hasn't already been opened in the same direction - If it has then don't open the Trade.

3/ When no trades are open and I open a Trade manually the EA will take over from there.

4/ If i close a Trade the EA will wait for a new Signal or next manually opened Trade.

3/ The Fast Moving Average line needs to hold it's Square look Form/Structure in Strategy Tester also if possible ?

4/ Add Risk amount

5/ Lot size.

6/ Alert Sound and Popup.

7/ Magic number 

8/ Able to adjust all settings



All code and rights to this EA to be owned by me ©

Code sent to me also


That's it 

Thanks


Tradeview Code Below


//Heikin Ashi Strategy 

strategy("Heikin Ashi Strategy  V2",shorttitle="HAS V2",overlay=true,default_qty_value=1000,initial_capital=100000,currency=currency.EUR)
res = input(title="Heikin Ashi Candle Time Frame", type=resolution, defval="60")
hshift = input(1,title="Heikin Ashi Candle Time Frame Shift")
res1 = input(title="Heikin Ashi EMA Time Frame", type=resolution, defval="180")
mhshift = input(0,title="Heikin Ashi EMA Time Frame Shift")
fama = input(1,"Heikin Ashi EMA Period")
test = input(1,"Heikin Ashi EMA Shift")
sloma = input(30,"Slow EMA Period")
slomas = input(1,"Slow EMA Shift")
macdf = input(false,title="With MACD filter")
res2 = input(title="MACD Time Frame", type=resolution, defval="15")
macds = input(1,title="MACD Shift")

//Heikin Ashi Open/Close Price
ha_t = heikinashi(tickerid)
ha_open = security(ha_t, res, open[hshift])
ha_close = security(ha_t, res, close[hshift])
mha_close = security(ha_t, res1, close[mhshift])

//macd
[macdLine, signalLine, histLine] = macd(close, 12, 26, 9)
macdl = security(ha_t,res2,macdLine[macds])
macdsl= security(ha_t,res2,signalLine[macds])

//Moving Average
fma = ema(mha_close[test],fama)
sma = ema(ha_close[slomas],sloma)
plot(fma,title="MA",color=lime,linewidth=2,style=line)
plot(sma,title="SMA",color=red,linewidth=2,style=line)


//Strategy
golong =  crossover(fma,sma) and (macdl > macdsl or macdf == false )
goshort =   crossunder(fma,sma) and (macdl < macdsl or macdf == false )

strategy.entry("Buy",strategy.long,when = golong)
strategy.entry("Sell",strategy.short,when = goshort)


Файлы:

Откликнулись

1
Разработчик 1
Оценка
(320)
Проекты
466
42%
Арбитраж
78
12% / 63%
Просрочено
75
16%
Работает
2
Разработчик 2
Оценка
(258)
Проекты
395
28%
Арбитраж
69
19% / 49%
Просрочено
120
30%
Свободен
3
Разработчик 3
Оценка
(66)
Проекты
95
28%
Арбитраж
20
25% / 55%
Просрочено
24
25%
Свободен
4
Разработчик 4
Оценка
(130)
Проекты
210
40%
Арбитраж
90
20% / 43%
Просрочено
85
40%
Свободен
5
Разработчик 5
Оценка
(195)
Проекты
317
35%
Арбитраж
64
13% / 56%
Просрочено
82
26%
Свободен
6
Разработчик 6
Оценка
(546)
Проекты
823
73%
Арбитраж
15
53% / 13%
Просрочено
193
23%
Работает
7
Разработчик 7
Оценка
(1235)
Проекты
2820
80%
Арбитраж
156
22% / 43%
Просрочено
489
17%
Свободен
8
Разработчик 8
Оценка
(1)
Проекты
1
0%
Арбитраж
1
0% / 100%
Просрочено
0
Свободен
Похожие заказы
Hello, can you help me with with a project i read about. Can i send you the link and you tell me if you can build the bot please. I think most of the code is supplied. Regards Steve
Modify The Source Code to a Working Expert Advisor. Attached Are .Mq5 Files That I Want To Modify. 1 is The Indicator , The Other is an Expert Advisor, But It is not Working. Once I Compile it, It Says: ' property tester_inidicator "arrows_curves" has been implicitly added during compilation because the indicator is used in iCustom function 0 0
Input based MT5 EA 30 - 40 USD
Hi there, I need an input based MT5 EA created from scratch. I have a detailed list of the inputs I require and how they should be coded. I also require a clean and well presented interface on the chart to represent certain data of the EA as it trades. Experienced coders only, must speak English
Expert Advisor 30 - 35 USD
Hello! I'd like to get a quote from you. I want to build a simple Expert Advisor that does martingale hedging like in the attached picture, but that allows me to specify the price zone and exits in points. I would like to be able to manually open the first trade with whatever lot size I choose at market price and have the following trades/orders be opened automatically with lot sizes according to the multiplier set
I am looking for developer who can develop an Expert Advisor based on Martingale with Pending Order Grid for Hedging. I am very happy to provide the detail requirement if you get in touch
Hello I want to develop a trading bot for my ctrader platform based on the attached Specification Anyone interest and experienced in this field should contact me on this project
I need to correct/modify EA based on Martingale strategy which include no. of modules, manual lot size, Martingale factor, TP, SL, Cutt-off SL, Balance DD limit, Enable new orders, Reverse orders, Equity Rise, News filter, Time filter, Alert, Chart Panel etc,. MA crossover logic to be added. Details can be discussed on personal basis. Base source files shall be submitted by freelancer. Existing EA can be shared which
Hello, I am looking for an programmer to convert a TradingView strategy pine script to MT5 EA auto trade bot. The indicator is based on the FVG/Imbalance (Pine script will be provided) The MT5 EA must include the strategy with the same options panel as TradingView script The MT5 EA must return 100% the same results as TradingView script The MT5 EA must be errors free The MT5 EA code must be well commented
Hello, How are you doing? I need a developer who can create a scanner with just CCi indicator for overbought and oversold for many pairs and Is it possible to put it with the free plapn of tradingview ? Requirements will be sent via inbox Kindly bid if this is what you can do Thanks
Hello The EA will work on particular zone choose by the user and can mark it on any TF and with some rules can open trades and mange the trade by some unique rules. the EA need to check the difference by RSI as well and with some extra rules . developer should have good attitude and good communication (englsih) with high performence and knowledge with coding EA

Информация о проекте

Бюджет
150+ USD
Исполнителю
135 USD
Сроки выполнения
от 1 до 2 дн.