Convert a TradingView indicator into MT5 EA/Trading robot

MQL5 Эксперты

Работа завершена

Время выполнения 12 дней

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

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


Файлы:

PNG
ziOfpnzr.png
552.1 Kb

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

1
Разработчик 1
Оценка
(412)
Проекты
543
75%
Арбитраж
9
44% / 0%
Просрочено
24
4%
Свободен
2
Разработчик 2
Оценка
(1120)
Проекты
1807
61%
Арбитраж
14
64% / 7%
Просрочено
84
5%
Свободен
3
Разработчик 3
Оценка
(174)
Проекты
199
12%
Арбитраж
38
37% / 34%
Просрочено
5
3%
Работает
Опубликовал: 2 примера
4
Разработчик 4
Оценка
(574)
Проекты
945
47%
Арбитраж
309
58% / 27%
Просрочено
125
13%
Свободен
Похожие заказы
I am looking for an experienced MT4 Expert Advisor developer to help backtest and optimize an existing EA for prop firm trading . The EA currently trades Gold (XAUUSD) on M1/M5 , and the goal is to make it low-risk, stable, and prop-firm friendly , while also identifying a more aggressive preset for evaluation phases
Hi, I need to build an EA which is based on signal that i get from another EA. That EA scans the symbols and sends notifications. Alerts are written to the MetaTrader terminal log. All is needed is to access the terminal log / experts log, and parse or react to the alert messages written there. I buy that EA to take a buy and sell at the same time and settings will be very simple: Lot size, TP, SL (0 means SL is
Requirements Specification examples Here is an example of Requirements Specification for the development of the MACD Sample Expert Advisor, which is available in the MetaTrader 5 standard package. 1. The idea of the trading system is as follows : market entries are performed when MACD's main and signal lines intersect in the current trend direction . 2. Trend is determined based on the Exponential Moving Average
I am looking for a developer to create a trading robot (EA) to trade XAUUSD, NAS100 and SPX500. The rules are as follows: Buy when the 2 EMA crosses over the 10 EMA and price closes over the 50 ema. Sell when the 2 EMAs cross below the 10 EMAs and the price closes below the 50 EMAs. The take profit and stop loss can be adjusted by me selecting from a drop-down box. I am open to other parameters to optimize
Please convert mql4 EA into mql5 EA, source of code will be send only for selected candidates, After conversion 1:1 EA require small, cosmetic changes, My budget is 30 USD, I have 1 converted mql5 file, but have some bugs, maybe it will be helpful for you or maybe you want to start conversion from 0, it's up to you
Description I need an very low latency MT5 Expert Advisor (EA) developed in MQL5 to automate TradingView alerts into MT5 trades for alerts set up done on trading view. The EA must work on both DEMO and LIVE accounts whichever will be attached to MT5 (XM, IC Markets and similar MT5 brokers) and be suitable for fast 1-minute timeframe scalping.End to End solution. Functional Requirements 1. TradingView Integration
I’m looking for a skilled EA developer who has a strong understanding of price action and supply & demand concepts , and can translate these ideas into a well-structured, reliable Expert Advisor. It will be a combination of 2 strategy into one EA. This project involves multiple trading strategies , and I’m only interested in working with someone who is genuinely familiar with these concepts and confident in
Project Overview I am looking for an experienced MQL5 developer to build a custom, prop-firm-compliant trend-following Expert Advisor (EA) for MetaTrader 5 . This EA will be used on prop firm accounts (e.g., FTMO-style rules), so strict risk control and rule compliance are mandatory . This is NOT a grid, martingale, scalping, or recovery EA. The goal is consistency, rule compliance, and capital preservation , not
Hi, I have listed this job at $100, however, the price I am willing to pay depends mainly on the DD of your EA. I am looking for: 1. MT4 EA + source code 2. DD ideally lower than 5%, max 6%. 3. Profitable 4. One trade at a time. No history readers and no unprofitable EAs please; I will validate this. I have Global Prime and RoboForex for testing. If your EA is near about, but not exact s
I would like to buy ea that is proven to be good need to have stable profit and can be very unstable DD but not more than 40 %you can send eas in dm for sale. I am looking of an Expert Advisor (EA) that has undergone independent validation and demonstrates a capability to successfully navigate prop firm challenges, as well as efficiently manage funded accounts. It is imperative that you provide a comprehensive

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

Бюджет
30 - 150 USD
Сроки выполнения
до 5 дн.