Convert a Pine script to mql4 indicator script

MQL4 Konvertierung

Auftrag beendet

Ausführungszeit 21 Stunden
Bewertung des Kunden
Excellent work! The converting from pine to mql4 has result very accurate. I strongly recommend. Thank you.
Bewertung des Entwicklers
A great job with a great customer Thanks a lot.

Spezifikation

Hi,

I want to get this Pipe script to mql4  

//@version=2
//creator: @yasinipek83
//author: @fr3762 KIVANÇ
//Modified by Maped, buy sell signals only for a cleaner chart !

study("Heikin Ashi Smoothed Signals", overlay=true)
EMAlength=input(50,"EMA Length")

src=ohlc4
haOpen=0.0
haOpen := (src + nz(haOpen[1]))/2
haC=(ohlc4+nz(haOpen)+max(high,nz(haOpen))+min(low,nz(haOpen)))/4
EMA1=ema(haC,EMAlength)
EMA2=ema(EMA1,EMAlength)
EMA3=ema(EMA2,EMAlength)
TMA1=3*EMA1-3*EMA2+EMA3
EMA4=ema(TMA1,EMAlength)
EMA5=ema(EMA4,EMAlength)
EMA6=ema(EMA5,EMAlength)
TMA2=3*EMA4-3*EMA5+EMA6
IPEK=TMA1-TMA2
YASIN=TMA1+IPEK
EMA7=ema(hlc3,EMAlength)
EMA8=ema(EMA7,EMAlength)
EMA9=ema(EMA8,EMAlength)
TMA3=3*EMA7-3*EMA8+EMA9
EMA10=ema(TMA3,EMAlength)
EMA11=ema(EMA10,EMAlength)
EMA12=ema(EMA11,EMAlength)
TMA4=3*EMA10-3*EMA11+EMA12
IPEK1=TMA3-TMA4
YASIN1=TMA3+IPEK1

mavi=YASIN1
kirmizi=YASIN

longCond=mavi>(kirmizi+1)
shortCond=mavi<(kirmizi-1)
trendState  = kirmizi < mavi ? true : kirmizi > mavi ? false : trendState[1]
closePlot   = plot(kirmizi, title = "Close Line", color = #FF5252, linewidth = 3, style = line, transp = 70)
openPlot    = plot(mavi, title = "Open Line", color = #311B92, linewidth = 3, style = line, transp = 70)
closePlotU  = plot(trendState ? kirmizi : na, transp = 100, editable = true)
openPlotU   = plot(trendState ? mavi : na, transp = 100, editable = true)
closePlotD  = plot(trendState ? na : kirmizi, transp = 100, editable = true)
openPlotD   = plot(trendState ? na : mavi, transp = 100, editable = true)
fill(openPlotU, closePlotU, title = "Up Trend Fill", color = #311B92, transp = 70)
fill(openPlotD, closePlotD, title = "Down Trend Fill", color = #FF5252, transp = 70)


last_signal = 0
long_final  = longCond  and (nz(last_signal[1]) == 0 or nz(last_signal[1]) == -1)
short_final = shortCond and (nz(last_signal[1]) == 0 or nz(last_signal[1]) == 1)

alertcondition(long_final, title="Buy alarm", message="Buy Heikin")
alertcondition(short_final, title="Sell alarm", message="Sell Heikin")
last_signal := long_final ? 1 : short_final ? -1 : last_signal[1]

plotshape(long_final, style=shape.triangleup,
          location=location.belowbar, color=#311B92,size=size.tiny,title="Buy label",transp=70)
plotshape(short_final, style=shape.triangledown,
          location=location.abovebar, color=#FF5252,size=size.tiny,title="Sell label",transp=70)

It should have same signal and have Parameter input for EMA length.

Bewerbungen

1
Entwickler 1
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
2
Entwickler 2
Bewertung
(401)
Projekte
529
74%
Schlichtung
9
44% / 0%
Frist nicht eingehalten
24
5%
Frei
Ähnliche Aufträge
This is a Ready Made grid Automatic EA 1. need some bug fixing and little modifcation this ea has some bug like -Takeing Random Trade after Mt4 Restart . also not flow set grid distance. like if i set 300pips grid distance, some time it place trade at 400 pips distance . fix this bug 2. Add one more anti-martingle Engine , LIKE Engine1-for martingle and Engine 2- Anti-martingle bot Engine place trade at the same time
Looking for a skilled developer to turn a pinescript into an MT5 indicator & EA I then want it to place buy and sell trades accordingly with close on opposite signal. // @version=1 indicator ( "Supply and Demand johann]" , overlay = true , max_boxes_count = 500 , max_bars_back = 500 ) //------------------------------------------------------------------------------ //Settings
Hello, I need to convert and indicator from pindescript to a bot in mt5 with a specific strategy. the pinescript is simple and is basicly modified moving average crossover with atr channel
Hi, I have one indicator for MT4 and it is working fine as I need. Now I want to convert it into MT5 version. The basic idea is that I put a starting date in one box, symbol in second box, number of lots in 3 box, per point value in 4th box. Indicator generate a virtual equity from starting minute till current date and time and shows it in 5th box and before this, it shows the starting price also, which I set by date
The developer needs to convert the attached ZZ semafor indicator from MQL4/MT4 platform to Pine Script, ensuring it includes alerts. hoping to get this done within a day. This involves translating the indicator's logic, including its ZigZag calculations and plotting logic, into Pine Script's syntax. Additionally, the script should generate alerts based on specific conditions or events within the indicator's behavior
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
Hey there, I need to convert an indicator from ninja to mt4 I will attach the ninjatrader indicator script to be converted into mt4 If you can do this kindly bid and let's discuss about the project Thanks
Hello, I need a developper to convert my Pine Script strategy to MQL5 because I need to do grid search backtesting It's a quite simple strategy, 2 ema, and depending on the position of the curve relative to those 2 ema (a percentage over or under) it selects a branch in which a red 1mn candle closing price settled at a certain percentage triggers a sell and a green 1mn candle triggers a buy, always 100% equity, easy
Seeking assistance to covert Pine script from TradingView to MetaTrader 5. Require seamless transition for optimal functionality. Appreciate expertise in script conversion. Contact for further details Expertly convert Pine script from TradingView to MetaTrader 5 with precision and efficiency. Ensure seamless functionality and compatibility for optimal trading experience. Experienced in script conversion, I guarantee
Programmer needed to make my HFT bot more suitable for live trading. After testing and proven, if up to expectation, full funds will be received. Genuine offer but if this is successful further discussions can take place. DM me first so we can discuss further

Projektdetails

Budget
30+ USD
Für die Entwickler
27 USD
Ausführungsfristen
bis 1 Tag(e)