Tradingview indicator to MT5 EA

İş tamamlandı

Tamamlanma süresi: 2 gün
Geliştirici tarafından geri bildirim
Thanks for the fair business.
Müşteri tarafından geri bildirim
He truly deliver with remarkable speed and ease. The process was incredibly straightforward and efficient. Highly recommend!

İş Gereklilikleri

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

Yanıtlandı

1
Geliştirici 1
Derecelendirme
(156)
Projeler
221
22%
Arabuluculuk
14
64% / 21%
Süresi dolmuş
1
0%
Meşgul
2
Geliştirici 2
Derecelendirme
(10)
Projeler
25
28%
Arabuluculuk
1
0% / 0%
Süresi dolmuş
1
4%
Yüklendi
3
Geliştirici 3
Derecelendirme
(38)
Projeler
40
25%
Arabuluculuk
21
14% / 71%
Süresi dolmuş
8
20%
Yüklendi
4
Geliştirici 4
Derecelendirme
(7)
Projeler
5
20%
Arabuluculuk
3
0% / 33%
Süresi dolmuş
1
20%
Çalışıyor
5
Geliştirici 5
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
6
Geliştirici 6
Derecelendirme
(4)
Projeler
4
0%
Arabuluculuk
2
0% / 100%
Süresi dolmuş
1
25%
Serbest
7
Geliştirici 7
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
8
Geliştirici 8
Derecelendirme
(185)
Projeler
239
60%
Arabuluculuk
8
25% / 38%
Süresi dolmuş
8
3%
Yüklendi
9
Geliştirici 9
Derecelendirme
(253)
Projeler
408
38%
Arabuluculuk
86
43% / 19%
Süresi dolmuş
70
17%
Yüklendi
Benzer siparişler
I am looking for an experienced Forex trading expert to help me configure, set up, and run a fully automated trading account. I am new to Forex trading and am eager to learn, so I am seeking someone who can not only set up the account but also provide guidance and education throughout the process
This Indicator is for the 15minutes timeframe but it should be able to work on higher timeframes and with any currency pairs. I want an indicator that draws two horizontal lines - One from the Highest High, the other from the Lowest Low. The lines start from the start of a new Trading day and ends at 04:00 am. So the indicator draws the line from the highest high between time 0 and 4am AND the line from the lowest
I have an EA that works with GRID, very simple strategy. THE JOB - This current EA is not closing both sides when TP is reached so would like to make this function work. The strategy : The Expert will start and generate a position of buy\sell at the same time when added to chart. The frist and last positions are considered scalping positions with a smaller TP just for the purpose of generating IB comisisons. After
I would like to find someone who has already created a trading robot before. Im also looking for someone who can creat a bot that goes with time and structure
hi. I hv a strategy on tradingview need to convert to MT4/MT5 expert advisor for algo trading. would like to add some tradingview strategy setting to the EA(not included in my tradingview code): recalculate after order is filled, order size: xx% of equity
Hello great developer i need a great developer that can help me to do the modification on Ninjatrader https://forum.ninjatrader.com/forum/ninjatrader-7/general-development/44785-real-time-data-feed-from-excel-sheet Need a simple tool to connect rt data from excel to Ninjatrader- Already a free tool available which extracts data from trading software called- Nest Trader - to Ninjatrader- Its possible to modify it to
Hello I would like to replicate ThinkTrader desktop version indicators to be used in MT4 . The indicators are 1) Trendrisk Trend and 2) Supertrend. These indicators will paint the candlestick of the chart. thanks
Mt4 EA Copy trades from octafx copytrading master trader trades 1-i need a bot which will copy trades from Octafx Copytrading Master Trader trades to Metatrader 4 account. 2-bot will copy exactly same trade with same lotsize 3-Bot should open exactly same time when master open and close exactly same time when master close 4-provide complete source code Guide Completely how to Run*
EA indicador Velas 30 - 50 USD
Necesito crear un EA basado en un indicador que da señal de entrada y que tenga los siguientes parametros 1. Entrar Buy o Sell en la siguiente vela de la señal dependiendo la Flecha 2. El TP para BUY sera apenas cierre en vela verde sin importar los pips que saque de ganancias puede ser que sea 1 pip o 10 o incluso salir en perdida, no importa 2. El TP para Sell sera apenas cierre en vela roja sin importar los pips
Forex trading market opening an account for the first time, modify you system of forex , always there for everyone,you are all welcome and for info on all platforms @ lil_johnny254 there to serve you

Proje bilgisi

Bütçe
40+ USD
Geliştirici için
36 USD