Heikin Ashi Indicator Needed

MQL4 Indicatori In conversione

Lavoro terminato

Tempo di esecuzione 2 giorni
Feedback del dipendente
Great Customer
Feedback del cliente
Mateusz is the best developer, great accuracy of work. I will continue working with him on future developments.

Specifiche

 Good Day Developer 


May you kindly convert the below pinescript from TradingView into an MQL4 Indicator. Below is the source code of the indicator on TradingView

I require the indicator asap, so your assistance would be highly appreciated. The MQL4 indicator should be the exact replicae of the Trading View indicator.


My budget is between $20 - $40 


Source Code:

study("Heikin Ashi Smoothed Buy Sell v4 ", overlay=true)

EMAlength=input(55,"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 and mavi[1]<=kirmizi[1]

shortCond=mavi<kirmizi and mavi[1]>=kirmizi[1]


trendState = kirmizi < mavi ? true : kirmizi > mavi ? false : na

closePlot = plot(kirmizi, title="Close Line", color=#009900, linewidth=10, style=plot.style_line, transp=90)

openPlot = plot(mavi, title="Open Line", color=#CC0000, linewidth=10, style=plot.style_line, transp=90)

closePlotU = plot(trendState ? kirmizi : na, transp=100, editable=false)

openPlotU = plot(trendState ? mavi : na, transp=100, editable=false)

closePlotD = plot(trendState ? na : kirmizi, transp=100, editable=false)

openPlotD = plot(trendState ? na : mavi, transp=100, editable=false)

fill(openPlotU, closePlotU, title="Up Trend Fill", color=#009900, transp=1)

fill(openPlotD, closePlotD, title="Down Trend Fill", color=#CC0000, transp=1)






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 signal!!!")

alertcondition(short_final, title="sell alarm", message="sell signal!!!")

last_signal := long_final ? 1 : short_final ? -1 : last_signal[1]


plotshape(long_final, style=shape.labelup, location=location.belowbar, color=color.blue, size=size.tiny, title="buy label", text="BUY", textcolor=color.white)

plotshape(short_final, style=shape.labeldown, location=location.abovebar, color=color.red, size=size.tiny, title="sell label", text="SELL", textcolor=color.white)

 

Con risposta

1
Sviluppatore 1
Valutazioni
(55)
Progetti
96
40%
Arbitraggio
13
38% / 62%
In ritardo
25
26%
Gratuito
Ordini simili
Необходимо конвертировать индикатор в Mql5. Индикатор должен индентично работать иметь тот же функционал. Ссылка на индикатор . Я планирую конвертировать 5 индикаторов в общей сложности. Надеюсь на долгосрочное сотрудничество
Hello freelancers here, I need an expert freelancer to help me convert an expert advisor from MT4 to MT5. I have the MT4 source code, As for now i only got $15 for this project i don't have much on me at the moment, So i need someone who can work long terms cause i still have other projects i need him to work on for me
I want to convert my tradingview indicator to mt5 indicator .. I want the mt5 indicator to be same with how the tradingview is . No addition no subtraction. Must be same with tradingview for mt5 indicator
Hey I need a pinescript coder to convert Tradingview PINESCRIPT to Metatrader 5, I have the script on tradingview and I will be eligible to share this with you via comment section I need a proficient individual who is able to make a good conversion to tradingview indicator without any errors code/bugs, make the code run perfectly as expected, please reach out if you can do this thanks
We have and expert EA running trades in MT5 and wish to duplicate those in Tradovate. The Tradovate platform does have an API facility so we require someone who can configure/write MT5 trades to Tradovate via the API
I need two bots converted from MQL4 to MQL5. They have indicators and order types inside, I will provide the source code etc when agreed. Please message me for more details
Hello. I have 2 indicators from pinescript that I am looking for a conversion to ninjascript. The first indicator is about 60 lines of code. The second indicator is about 100 lines of code. My code is very neat and organized easy to follow. The math and logic in the code *must* be converted exactly or the indicators will be useless
Hello Everyone, In Trading view there is a Script named 'Fibonacci Trend Reversals', I want's the same convert it into MT5 Indicator. The script giving Buy & Sell Signals with 2 Targets as TP1 & TP2, want the same into MT5. Also requires the same Input that the Indicator having, for ref. Screenshots attached
I have a strategy that is based on an indicator that I have in trading view, and I want to automate this strategy for mt4 or mt5. Pls reach out to me of you have the right profession for converting tradingview strategy to metatrader thanks
I have the source file for a FOREX EA that I would like to modify to allow it to trade crypto currencies. It currently gives the error that the currency is not recognized when trying to back test and optimize the EA. Will need the EA to recognize BTC/ETH/SOL pairs and be able to trade crypto currencies

Informazioni sul progetto

Budget
40+ USD
Per lo sviluppatore
36 USD
Scadenze
a 10 giorno(i)