Tradingview indicator to MT5 EA

工作已完成

执行时间2 天
员工反馈
Thanks for the fair business.
客户反馈
He truly deliver with remarkable speed and ease. The process was incredibly straightforward and efficient. Highly recommend!

指定

Just a few options i would need, 

- Enter the trade immediately after the trading signal or enter the trade after the closing candle.

- Close the position after a reversal signal or not.

- Maximum of 3 trades at the same time.

- TP  & SL in points or Trailing stop

- Fixed lots or % risk based on balance



//
@version=5

indicator("Trend [Dr Kang]", overlay = true)

//Pivots
plotPivots = true
pivotLookup = 1
hih = ta.pivothigh(high, pivotLookup, pivotLookup)
lol = ta.pivotlow (low , pivotLookup, pivotLookup)
top = ta.valuewhen(hih, high[pivotLookup], 0)
bottom = ta.valuewhen(lol, low [pivotLookup], 0)

stop_loss_long = ta.lowest(low[1], 2) * (1 - (0/100 * 0.01))
stop_loss_short = ta.highest(high[1], 2) * (1 + (0/100 * 0.01))

plot(top, offset=-pivotLookup, linewidth=1, color=(top != top[1] ? na : (plotPivots ? color.yellow : na)), title="매수 손절라인")
plot(bottom, offset=-pivotLookup, linewidth=1, color=(bottom != bottom[1] ? na : (plotPivots ? color.blue : na)), title="매도 손절라인")

//////////// BB 202 ////////////////////
bbbasis = ta.ema(close, 20)
bbdev = 2 * ta.stdev(close, 20)
bbupper = bbbasis + bbdev
bblower = bbbasis - bbdev

emaColor = bbbasis > ta.sma(close,20) ? color.yellow : color.blue

bf1 = plot(ta.sma(close,20), color=color.blue, title="SMA 20")
bf2 = plot(bbbasis, "BB Basis 202", color=color.yellow, offset = 0, linewidth = 1)
plot(bbupper, "BB Upper 202", color=color.white, offset = 0, linewidth = 1)
plot(bblower, "BB Lower 202", color=color.white, offset = 0, linewidth = 1)

bbfColor = bbbasis > ta.sma(close,20) ? color.yellow : color.blue
fill(bf1, bf2, title='Band Filler', color=bbfColor, transp=70)

//////////// BB44 ////////////////////
bbbasis4 = ta.ema(open, 4)
bbdev4 = 4 * ta.stdev(open, 4)
bbupper4 = bbbasis4 + bbdev4
bblower4 = bbbasis4 - bbdev4
plot(bbbasis4, "BB Basis 44", color=color.gray, offset = 0, linewidth = 1, display = display.none)
plot(bbupper4, "BB Upper 44", color=color.gray, offset = 0, linewidth = 1)
plot(bblower4, "BB Lower 44", color=color.gray, offset = 0, linewidth = 1)

///// Trading Alert //////
Buy = low < bottom and close > bottom and bbbasis > ta.sma(close, 20) and close > bblower
Sell = high > top and close < top and bbbasis < ta.sma(close, 20) and close < bbupper
plotshape(Buy, title="Buy" , style = shape.triangleup, color = color.yellow, size = size.tiny, location = location.belowbar)
plotshape(Sell, title="Sell" , style = shape.triangledown, color = color.blue, size = size.tiny, location = location.abovebar)

Buy_DB = low < bottom and low < bblower4 and low < bblower and close > bblower4 and close > bblower and bbbasis > ta.sma(close, 20)
Sell_DB = high > top and high > bbupper4 and high > bbupper and close < bbupper4 and close < bbupper and bbbasis < ta.sma(close, 20)
plotshape(Buy_DB, title="Buy_DB" , style = shape.triangleup, color = color.white, size = size.tiny, location = location.belowbar)
plotshape(Sell_DB, title="Sell_DB" , style = shape.triangledown, color = color.white, size = size.tiny, location = location.abovebar)

if Buy_DB or Buy
alert("Buy XAUUSD q=0.01 tt=200 td=100 ts=200 m=600 close m=601", alert.freq_once_per_bar)

if Sell_DB or Sell
alert("Sell XAUUSD q=0.01 tt=100 td=50 ts=100 m=601 close m=600", alert.freq_once_per_bar)

//Close Short position
bgcolor(ta.crossover(bbbasis, ta.sma(close, 20))?color.new(color.yellow,90):na)
if ta.crossover(bbbasis, ta.sma(close, 20) )
alert("close m=601", alert.freq_once_per_bar_close)

//Close Long position
bgcolor(ta.crossover(ta.sma(close, 20), bbbasis)?color.new(color.blue,90):na)
if ta.crossunder(bbbasis, ta.sma(close, 20))
alert("close m=600", alert.freq_once_per_bar_close)

XAUUSD

反馈

1
开发者 1
等级
(161)
项目
229
22%
仲裁
16
63% / 19%
逾期
1
0%
已载入
2
开发者 2
等级
(10)
项目
25
28%
仲裁
2
0% / 0%
逾期
1
4%
已载入
3
开发者 3
等级
(38)
项目
40
25%
仲裁
23
13% / 74%
逾期
8
20%
工作中
4
开发者 4
等级
(7)
项目
5
20%
仲裁
3
0% / 33%
逾期
1
20%
工作中
5
开发者 5
等级
项目
0
0%
仲裁
0
逾期
0
空闲
6
开发者 6
等级
(4)
项目
4
0%
仲裁
2
0% / 100%
逾期
1
25%
空闲
7
开发者 7
等级
项目
0
0%
仲裁
0
逾期
0
空闲
8
开发者 8
等级
(194)
项目
252
62%
仲裁
9
22% / 33%
逾期
10
4%
工作中
9
开发者 9
等级
(259)
项目
420
38%
仲裁
86
44% / 19%
逾期
70
17%
繁忙
相似订单
Hola, me gustaría solicitar la duplicación de un indicador que ya utilizo en MetaTrader 5, desarrollado en lenguaje MQL5. La idea es tener una copia idéntica del indicador existente, estaré dejando una imagen a continuación para qué se guíen
Tý gà 30+ USD
Đính kèm tối đa 32 tệp, tối đa 16 Mb cho mỗi lần tải lên (.zip .txt .log .mqh .ex5 .mq5 .mq4 .mqproj .ex4 .mt5 .set .tpl .cl .py .sqlite .csv .ini .ipynb .onnx .gif .png .jpg .jpeg .mp4 .webm)
Trading Idea 30 USD
This is the most important section of Requirements Specification. It provides the description of conditions, market states and indicator values, under which a Buy deal should be performed. To describe each condition required for generating a Buy signal, choose the numeric parameter affecting the emergence of a signal. For example, this may be the smoothing type and period for a Moving Average. These important
The default of my current EA is 120 pipstep to catch the quick turnaround scalps, but as the market runs away and more martingale levels are taken on the stuck trade, I would like the option to increase the pipstep (n amount) after (n amount) of trades open (fully customisable) I currently am using an EA I am happy with but don’t have the source code to customise. So would like to keep all the current inputs the
Terio bot 30+ USD
I have expert of crossing MA. I need who can add Fibonacci retrecement on it. So the fibo levels will be used for pending orders And TP/SL. When MA cross and open a trade Fibo must measure the trend put TP/SL of the trade and putt pending onderd in levels. And it must report the trade open and TP/SL in Telegram
need developer to create personal EA for me, serious developer required. will work together on my robot. timeframe 1h, simple SMA and RSI levels, 1 h time frame, trading on limit orders only
Hi! Thank you for your time. I'd like someone to code some horizontal indicator trendlines on MT5 please. The lines are to identify key times on the chart at current or last price at 1 hour and below time frames for all charts. Please refer to the attach picture as an example of what I'm after. As you'll see in the example there are small labelled boxes for "Futures", "Forex" and "Price Levels". These represent
This is based on a 180-day/30-day Exponential Moving Average when they cross. The entry will be when a counter-trend candle is exceeded by a trend candle and close to the 30-day moving average indicator line without touching it. Stop loss will be 2 pips below the prior counter trend candle. Trading long is when the price increases and the 30-day moving average crosses upward into the 180-day moving average. Trading
I would like to collaborate with a professional for this work, I have one indicator that is written in pine script (tradingview) language, I would like it to be converted to MQL5, that will further lead in making of trading bot according to conditions I will share with you the indicator file
I would like to collaborate with a professional for this work, I have one indicator that is written in pine script (tradingview) language, I would like it to be converted to MQL5, that will further lead in making of trading bot according to conditions I will share with you the indicator file

项目信息

预算
40+ USD
开发人员
36 USD