Convert a TradingView indicator into MT5 EA/Trading robot

MQL5 Esperti

Lavoro terminato

Tempo di esecuzione 12 giorni

Specifiche

Hi there,

I have a TradingView indicator that would like to convert into a trading robot for MT5.

1. Initial SL should put above/below last Fractals signed on the chart (Fractals in not part of the indicator as I use them separately and combined both of them for the strategy).

2. The position opens once the candle is closed.

3. The opposite signal should close the last position and open a new one.

4. I want a multi-timeframe into an only single chart (with the possibility in the setting to write by myself the timeframes I'm interested).

I need the code at the end when I insert the EA I want all the settings to be settable by myself like in the TW indicator + the Timeframe of the FRACTALS and the possibility to choose the multi-timeframe where the EA should operate.

I'd like to have, if it's possible, by 31st of December.

This is the code (is not mine, is a public code that I implement it with use of another indicator like Williams Fractals with timeframe=2 to put the initial timeframe):

//@version=4
study("Supertrend", overlay = true)

Periods = input(title="ATR Period", type=input.integer, defval=10)
src = input(hl2, title="Source")
Multiplier = input(title="ATR Multiplier", type=input.float, step=0.1, defval=3.0)
changeATR= input(title="Change ATR Calculation Method ?", type=input.bool, defval=true)
showsignals = input(title="Show Buy/Sell Signals ?", type=input.bool, defval=true)
highlighting = input(title="Highlighter On/Off ?", type=input.bool, defval=true)
atr2 = sma(tr, Periods)
atr= changeATR ? atr(Periods) : atr2
up=src-(Multiplier*atr)
up1 = nz(up[1],up)
up := close[1] > up1 ? max(up,up1) : up
dn=src+(Multiplier*atr)
dn1 = nz(dn[1], dn)
dn := close[1] < dn1 ? min(dn, dn1) : dn
trend = 1
trend := nz(trend[1], trend)
trend := trend == -1 and close > dn1 ? 1 : trend == 1 and close < up1 ? -1 : trend
upPlot = plot(trend == 1 ? up : na, title="Up Trend", style=plot.style_linebr, linewidth=2, color=color.green)
buySignal = trend == 1 and trend[1] == -1
plotshape(buySignal ? up : na, title="UpTrend Begins", location=location.absolute, style=shape.circle, size=size.tiny, color=color.green, transp=0)
plotshape(buySignal and showsignals ? up : na, title="Buy", text="Buy", location=location.absolute, style=shape.labelup, size=size.tiny, color=color.green, textcolor=color.white, transp=0)
dnPlot = plot(trend == 1 ? na : dn, title="Down Trend", style=plot.style_linebr, linewidth=2, color=color.red)
sellSignal = trend == -1 and trend[1] == 1
plotshape(sellSignal ? dn : na, title="DownTrend Begins", location=location.absolute, style=shape.circle, size=size.tiny, color=color.red, transp=0)
plotshape(sellSignal and showsignals ? dn : na, title="Sell", text="Sell", location=location.absolute, style=shape.labeldown, size=size.tiny, color=color.red, textcolor=color.white, transp=0)
mPlot = plot(ohlc4, title="", style=plot.style_circles, linewidth=0)
longFillColor = highlighting ? (trend == 1 ? color.green : color.white) : color.white
shortFillColor = highlighting ? (trend == -1 ? color.red : color.white) : color.white
fill(mPlot, upPlot, title="UpTrend Highligter", color=longFillColor)
fill(mPlot, dnPlot, title="DownTrend Highligter", color=shortFillColor)
alertcondition(buySignal, title="SuperTrend Buy", message="SuperTrend Buy!")
alertcondition(sellSignal, title="SuperTrend Sell", message="SuperTrend Sell!")
changeCond = trend != trend[1]
alertcondition(changeCond, title="SuperTrend Direction Change", message="SuperTrend has changed direction!")


File:

PNG
ziOfpnzr.png
552.1 Kb

Con risposta

1
Sviluppatore 1
Valutazioni
(412)
Progetti
543
75%
Arbitraggio
9
44% / 0%
In ritardo
24
4%
Gratuito
2
Sviluppatore 2
Valutazioni
(1121)
Progetti
1809
61%
Arbitraggio
14
64% / 7%
In ritardo
84
5%
Gratuito
3
Sviluppatore 3
Valutazioni
(174)
Progetti
199
12%
Arbitraggio
38
37% / 34%
In ritardo
5
3%
In elaborazione
Pubblicati: 2 codici
4
Sviluppatore 4
Valutazioni
(574)
Progetti
945
47%
Arbitraggio
309
58% / 27%
In ritardo
125
13%
Gratuito
Ordini simili
Neville 30 - 200 USD
I need a trading robot for MT5 that trades XAUUSD. Conditions: - Buy when the 50 Moving Average crosses above the 200 Moving Average. - Sell when the 50 Moving Average crosses below the 200 Moving Average. Settings: - Lot size: 0.01 - Stop Loss: 50 pips - Take Profit: 100 pips - Only one trade at a time. The robot should work automatically and close trades when TP or SL is reached
GoldAI_v2_FINAL 30 - 70 USD
========================================================== Terminal Institusional GOLD AI v2.10 Sinkronisasi Realtime MT4 + Dasbor PWA + AI Multi-TF ========================================================== CARA MENJALANKAN (MUDAH): -------------------------- 1. Ekstrak ZIP ke folder manapun (misal: C:\GoldAI\) 2. Buka folder hasil ekstrak 3. Klik dua kali: INSTALL.bat → installotomatis 4. Klik dua kali
I'm looking to buy a profitable NinjaTrader automated trading system that can trade NQ/MNQ or ES/MES. My goal is to find a system with a strong profit potential, even if it has a high drawdown. Scope of work - Provide NinjaTrader automated trading system for NQ/MNQ or ES/MES. - Include backtest results for at least 1 year. - System must show high profitability. Additional information I am primarily focused on finding
Exe source code 70+ USD
Need a developer to help with a exe file and provide the source code, if you can do this please kidnly apply and tell me what you need to get this started
XAUUSD - TREND TRADER 30 - 500 USD
Find a good entry point and enter the trade .after the first profit of 25% is done then exit the trade .find the good market analysis of the trend and know when the market is on a good trend. After that now know the entry point and the take profit of the slot you have opened .have also a risk management strategy
Looking for someone to reverse/decompile my exe file, pls apply if this is something you can do and let me know how long this will take you to do will send the file to you once it’s something you seems to do
Hello, I am a serious buyer looking to acquire an existing, stable, and profitable Expert Advisor (EA) designed specifically for: 👉 Gold (XAUUSD) This is a full buyout request, including complete source code and full ownership. ⚠️ I am NOT looking to build a new EA from scratch. Only ready-made, proven systems with real performance history. ✅ EA Requirements (Strict) 📌 Symbol & Strategy ✔️ Trades Gold only (XAUUSD)
مرحبا احتاج ريبورت يعمل على mt5. يعمل على ذهب على تايم فريم ٥ دقائق. يعمل ٢٤ ساعة طريقة العمل كل ٣٠ دقيقة يتم فتح دورة مثال لو كانت ساعة ١.٢٥ ننتضر شمعة التالي المقصود بمعنى الشمعة ٥ دقايق سوف تغلق ساعة ١.٣٠ هذا الشمعة المقصودة يتم تطبيق كل نصف ساعة الشرح الدقيق عند اغلاق شمعة ٥ دقايق فورآ يتم تحديد هاي شمعة و لو الشمعة ننتضر في حال اخترق هاي شمعة المحددة بفارق نصف دولار أعلى شمعة المحددة
USD I’m looking to acquire an existing, profitable Expert Advisor (EA) with full source code to add to our client investment portfolio. for an experienced MQL5 developer to build a fully automated trading bot (Expert Advisor) for MetaTrader 5 . The bot will focus on trend-following scalping and must be designed to trade XAUUSD, EURUSDm, ETHUSDm,BTCUSDm and others on the M1 timeframe . The objective is to create a
I have a few different expert advisors. I would like a copier that will copy the trades from the robots on mt4/mt5 to trade locker. Make it so the copier only works with my expert advisors, so it can only be used by my members. Some of my systems are grid trading, for your reference. I want it to be easy to use, with clean functionality. Nothing difficult

Informazioni sul progetto

Budget
30 - 150 USD
Scadenze
a 5 giorno(i)