Vdub Fx SnipperVX3

İş Gereklilikleri

I copied and pasted a coding strategy from www.tradingview.com. I fix all the corrections in the coding when making it as an expert advisor. When I compiled the file, there were two errors, 2 errors which I don't know how to fix but if an expert can do it then it won't take him 2 seconds. Please help me get this file completed and ready to be used by millions of traders like me. It will also benefit you also. It's only two errors I'm sure it won't take long. The two errors are:

 'len' - declaration without type Vdub FX SniperVX3 .mq4 15 1

 ')' - unexpected end of program Vdub FX SniperVX3 .mq4 132 42

That's the only two errors, and it's annoying me I can't fix it. Please if anyone can fix it and send it back to me so I can install it and see how it works and also put it out for everyone. Thank you so much, pease e-mail me if any questions kevinmanrriquee@gmail.com, I respond very quickly to emails. Thank you so much, everyone!

 The person that created this amazing strategy is Vdubus and his website is www.vdubus.co.uk, he's an amazing guy but I couldn't reach him because I'm sure he has a very busy 

 

The one I made and try to fix is in the bottom attached, just need to download it and open it. But the original coding will be under here:  

 strategy(title='Vdub FX SniperVX3 / Strategy  v3', shorttitle='Vdub_FX_SniperVX3_Strategy', overlay=true, pyramiding=0, initial_capital=1000, currency=currency.USD)


//Candle body resistance Channel-----------------------------//

len = 34

src = input(close, title="Candle body resistance Channel")

out = sma(src, len)

last8h = highest(close, 13)

lastl8 = lowest(close, 13)

bearish = cross(close,out) == 1 and falling(close, 1)

bullish = cross(close,out) == 1 and rising(close, 1)

channel2=input(false, title="Bar Channel On/Off")

ul2=plot(channel2?last8h:last8h==nz(last8h[1])?last8h:na, color=black, linewidth=1, style=linebr, title="Candle body resistance level top", offset=0)

ll2=plot(channel2?lastl8:lastl8==nz(lastl8[1])?lastl8:na, color=black, linewidth=1, style=linebr, title="Candle body resistance level bottom", offset=0)

//fill(ul2, ll2, color=black, transp=95, title="Candle body resistance Channel")


//-----------------Support and Resistance 

RST = input(title='Support / Resistance length:', type=integer, defval=10) 

RSTT = valuewhen(high >= highest(high, RST), high, 0)

RSTB = valuewhen(low <= lowest(low, RST), low, 0)

RT2 = plot(RSTT, color=RSTT != RSTT[1] ? na : red, linewidth=1, offset=+0)

RB2 = plot(RSTB, color=RSTB != RSTB[1] ? na : green, linewidth=1, offset=0)


//--------------------Trend colour ema------------------------------------------------// 

src0 = close, len0 = input(13, minval=1, title="EMA 1")

ema0 = ema(src0, len0)

direction = rising(ema0, 2) ? +1 : falling(ema0, 2) ? -1 : 0

plot_color = direction > 0  ? lime: direction < 0 ? red : na

plot(ema0, title="EMA", style=line, linewidth=1, color = plot_color)


//-------------------- ema 2------------------------------------------------//

src02 = close, len02 = input(21, minval=1, title="EMA 2")

ema02 = ema(src02, len02)

direction2 = rising(ema02, 2) ? +1 : falling(ema02, 2) ? -1 : 0

plot_color2 = direction2 > 0  ? lime: direction2 < 0 ? red : na

plot(ema02, title="EMA Signal 2", style=line, linewidth=1, color = plot_color2)


//=============Hull MA//

show_hma = input(false, title="Display Hull MA Set:")

hma_src = input(close, title="Hull MA's Source:")

hma_base_length = input(8, minval=1, title="Hull MA's Base Length:")

hma_length_scalar = input(5, minval=0, title="Hull MA's Length Scalar:")

hullma(src, length)=>wma(2*wma(src, length/2)-wma(src, length), round(sqrt(length)))

plot(not show_hma ? na : hullma(hma_src, hma_base_length+hma_length_scalar*6), color=black, linewidth=2, title="Hull MA")


//============ signal Generator ==================================//

Piriod=input('720')

ch1 = security(tickerid, Piriod, open)

ch2 = security(tickerid, Piriod, close)

longCondition = crossover(security(tickerid, Piriod, close),security(tickerid, Piriod, open))

if (longCondition)

    strategy.entry("BUY", strategy.long)

shortCondition = crossunder(security(tickerid, Piriod, close),security(tickerid, Piriod, open))

if (shortCondition)

    strategy.entry("SELL", strategy.short)


///////////////////////////////////////////////////////////////////////////////////////////

 

 

 

Yanıtlandı

1
Geliştirici 1
Derecelendirme
(2)
Projeler
2
0%
Arabuluculuk
13
8% / 92%
Süresi dolmuş
1
50%
Serbest
2
Geliştirici 2
Derecelendirme
(1)
Projeler
2
0%
Arabuluculuk
3
0% / 100%
Süresi dolmuş
0
Serbest
Benzer siparişler
see trade open on every tick seconde ok forex pair us us30 if is current running at 40170.00 so open 2 trade buy stop and sell stop both in every tick pending order of buy stop will 40171.00 and sell stop pending order will be 40169.00 buy stop will open at 40171.00 and tp will be 40173.00 and SL will be 40169.50 ok if buy stop hit sell stop order automatically will be close now if sell stop order open at 40169.00 so
Hi, I have an indicator from my friend, I want to copy it to MT5 can you do that for me. Here is the link
I'm seeking assistance in developing a sophisticated trading robot with the following features: Core strategy: Harmonic pattern recognition Supply and demand analysis Fibonacci zigzag for trade optimization Additional components: News filter Dashboard for easy monitoring Customizable settings: Lot size Trailing stop Trading session parameters Maximum number of orders Option to use market or limit orders Resources
1. Add Feature For (SPREAD) Normal trading Hours Spread or User set trading Hours Spread True or false Set to true or False When set to true EA will only create or develop a trade if spread is in this window allowing it to and EA will follow a window in which it can trade based on spread so if spread is to high and outside of this window it will not create a trade It
Hi, I have an indicator from my friend, I want to copy it to MT5 can you do that for me. Here is the link
Hi, I have a working MQ4 EA (With a few warnings but works fine), I need the warnings cleared and converted to MQ5. But I would also like a few improvements first. Firstly: Fix warnings in MT4 code (return value of 'OrderSelect'/'OrderModify' should be checked). Add following features: Magic number modifiable variable (It's currently hard coded) Is it possible to have a stop loss dollar amount instead of lots if
i create a robot which help with order blocks and detection of spikes ....simply it analyses the market for you and if you are using it you wont need much skill to start operating it well you just need to know and understand how it works
I need an experienced programmer to create an automated EA that will open trades based on different candle stick formation strategies and indicators. The EA will first scan the market, find a current market trend and define area of support and resistance. On ranging market the EA doesn’t place trades . (1) EA should use a straddle strategy from either the S/R level, (2) indecision Doji candle from the S/R area, (3)
Order of EA trading only Arrow signals of my indicator in MT4 This EA should trade only the BUY and SELL Arrow signals after 1 added candle AND only if the bricks (blue for blue and red for sell) are in same direction Arrow + a brick Indicator is here attached. Arrow up + 2 Bricks Blue is BUY Arrow down + 2 Bricks Red is SELL Important is to check ONLY CLOSED candels. Sometimes it maybe occur ,that arrow apperase
Je souhaite un Ea advisor, possédants des stratégies combinés tels que : RSI+BB, Stoch+ATR, Fibonacci pattern harmonics, Keiltner+Canal Donchian, EMA+SMMA, support et résistance,zizag Min lots : 0.1 Je rechargerai mon solde une fois qu’un bon robot me sera présenté Je 'ai qu’une centaine d’euro entre mon investissement en votre EA et mon solde métatrader je ne veux pas de calcul de lots en fonction de mon

Proje bilgisi

Bütçe
10 USD
Geliştirici için
9 - 9 USD