Convert Pinescript into an MT4 EA

MQL4 Esperti

Specifiche

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)


Con risposta

1
Sviluppatore 1
Valutazioni
(320)
Progetti
466
42%
Arbitraggio
78
12% / 63%
In ritardo
75
16%
In elaborazione
2
Sviluppatore 2
Valutazioni
(258)
Progetti
395
28%
Arbitraggio
69
19% / 49%
In ritardo
120
30%
Gratuito
3
Sviluppatore 3
Valutazioni
(66)
Progetti
95
28%
Arbitraggio
20
25% / 55%
In ritardo
24
25%
Gratuito
4
Sviluppatore 4
Valutazioni
(130)
Progetti
210
40%
Arbitraggio
90
20% / 43%
In ritardo
85
40%
Gratuito
5
Sviluppatore 5
Valutazioni
(195)
Progetti
317
35%
Arbitraggio
64
13% / 56%
In ritardo
82
26%
Gratuito
6
Sviluppatore 6
Valutazioni
(546)
Progetti
823
73%
Arbitraggio
15
53% / 13%
In ritardo
193
23%
In elaborazione
7
Sviluppatore 7
Valutazioni
(1235)
Progetti
2820
80%
Arbitraggio
156
22% / 43%
In ritardo
489
17%
Gratuito
8
Sviluppatore 8
Valutazioni
(1)
Progetti
1
0%
Arbitraggio
1
0% / 100%
In ritardo
0
Gratuito
Ordini simili
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
Hi, Would it be possible to get a developer for my trading system based on the attached specification? EA DETAILS Indicators to use (1) Better RSI () (2) Dynamic Linear Regression Channel (DLRC) by Iravan on Tradingview.com () (3) Range filter Buy and Sell 5 min – guikroth version on Tradingview.com () (With Dynamic Linear Regression, the period/length is automatically adjusted making it much faster to trade
I need a bot that copy trade from mt4 to telegram and also sends entry point , stop loss and take profit for a specific forex pair or any other pair that is traded

Informazioni sul progetto

Budget
150+ USD
Per lo sviluppatore
135 USD
Scadenze
da 1 a 2 giorno(i)