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
等级
(1113)
项目
1798
61%
仲裁
14
64% / 7%
逾期
84
5%
空闲
3
开发者 3
等级
(173)
项目
197
12%
仲裁
38
37% / 34%
逾期
5
3%
已载入
发布者: 2 代码
4
开发者 4
等级
(571)
项目
941
47%
仲裁
304
59% / 25%
逾期
124
13%
工作中
相似订单
I want the ea to be made on rsi and ema crossover, rsi below 20 buy and ema9,21 bullish crossover vice versa and for sell rsi above 80 and ema 9 and ema 21 bearish crossover
High lots volume EA 30 - 600 USD
Hello guys, I need an EA on mql5 working only on eurusd and/or only with majors. Broker on which this EA will work applies a 4pips spread on eurusd. This should run on a small account (1000usd) and the only goal this EA must achieve is to reach a volume of at least 50/60 lots in one month (the higher the better). No need to preserve the capital/equity, the account could also go to zero as the worst scenario, but the
📋 V75 SMA Crossover EA — Summary of Rules 1. Chart Timeframe for Trading Trades are taken on the M15 timeframe. 2. Indicators Used Simple Moving Averages (SMAs): SMA 5 (fast) SMA 15 (medium) SMA 50 (slow) SMA 150 (long-term trend) 3. Entry Conditions Buy Signal: SMA 5 crosses above SMA 15, AND Current price is above both SMA 50 and SMA 150. Sell Signal: SMA 5 crosses below SMA 15, AND Current price is below both SMA
Back End Developer Required with Prop firm experience . This is For an ongoing project . ATR Threshold Breakout . Certification . The expert is designed to gain 1-2 % of the equity every single day . ( for prop firms ) . Session Filter , Economic Calendar Filter . The Panel needs Minor Adjustments to show the parameters correctly ( no extra parameters required ) . Live Chart Adjustments accordingly . Developer needs
We're seeking a highly skilled QuantConnect developer (Python) to build a sophisticated intraday trading algorithm for use in prop firm environments (e.g., MyFundedFX, FXIFY). The strategy involves multi-layered technical logic and requires integration of strict risk rules to meet live challenge requirements
Hey MQL5 Community, I am seeking an experienced algorithmic trading expert coder, skilled programmer who is able to take top clear look at my trading metrics, analyze exactly, craft tailored solutions based on my trading ideas, ensuring implementation according to the target to achieve the exact goal and make all expectation come to reality, feel free to reach out just if you are well skilled and capable of creating
I'm looking for an experienced and reliable QuantConnect developer (Python preferred) to help build and support a custom intraday trading algorithm with layered technical logic, clean structure, and prop firm risk management constraints. This is a high-level strategy requiring precision, performance, and smart modularity
I want an EA that is already made. It can be of any trading instrument or can trade different trading pairs. It needs to show risk reward profitability with little drawdown. Let me know. Thanks
As in tittle, I am searching a profitable MT4 or MT5 EA suitable for prop firms that allows to makes few % per month. Max daily drawdown=5%, max total drawdown=10%, Only serious offer please and please send me proofs that this really works
Gold swing trade on the strongest support and resistance level for the week. Scalping strategy based on strong support and resistance level for the day in conjunction with the current events and news that effects the gold market for the current day.Alert when to buy and sell using all indicators available

项目信息

预算
30 - 150 USD
VAT (22%): 6.6 - 33 USD
总计: 36.6 - 183 USD
开发人员
27 - 135 USD
截止日期
 5 天