Vdub Fx SnipperVX3

MQL4 Experts Scripts

Termos de Referência

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)


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

 

 

 

Respondido

1
Desenvolvedor 1
Classificação
(2)
Projetos
2
0%
Arbitragem
13
8% / 92%
Expirado
1
50%
Livre
2
Desenvolvedor 2
Classificação
(1)
Projetos
2
0%
Arbitragem
3
0% / 100%
Expirado
0
Livre
Pedidos semelhantes
Description Hello! I’m looking for an experienced MQL5 developer to build an MT5 Expert Advisor that can trade two opposite strategies on the same price levels : BREAKOUT (trend continuation) REVERSAL (pullback / reversal) Key idea: the EA must allow a fair comparison by using the same Trigger Bar logic for both strategies (touch/break event), so we can backtest different combinations of levels, timeframes, and
I’m looking for a profitable MT5 grid trading strategy with strong risk management that is designed to avoid account blowouts . The strategy can trade on any symbol, as long as capital preservation is the top priority. I’m interested in purchasing the EA together with the full source code , provided it meets my requirements. Please let me know if you have a suitable solution available
I recently purchased an off the shelf 'multiple positions executor' EA in order to open multiple trades simultaneously using MT5 however the orders would fail. It seems they would fail because the EA uses PIPs and the broker I use with MT5 uses Points. The EA was sending an order with SL/TP values that violated the broker’s symbol rules. I need an EA developed which Opens multiple market orders simultaneously
I would like an experienced developer to work with. I have an existing EA I would like to modify. The EA works well on demo account but for some reasons, is not profitable on live account. I want an experienced developer to optimise it for a live account. Note: I only have a trial version of the EA, I do not have the source code
Pilot RSI 30 - 3090 USD
Theory : The original calculation of RSI is (in short) the following : Add the changes up and changes down. From those sums, we can then calculate the RSI (Relative Strength Index). At that particular step Welles Wilder used what sometimes is called Wilders EM for smoother results, And that gives us space to [produce all sort of different RSIs by using different types of smoothing at the final step This version : It
Job Details — Gold M1 EMA Consolidation Pullback EA Description: * Fully automatic MT5 EA * Pair: Gold (XAUUSD) * Timeframe: M1 * Funded account use (strict risk rules) * Full source code (.mq5) with lifetime ownership required 🔹 Strategy Rules * Single EMA period = 15 * Buy: price breaks upward and stays above EMA * Sell: price breaks downward and stays below EMA 🔹 Consolidation Logic * Identify last valid swing
SLee ต่อไปนี้เป็นตัวอย่างเอกสารข้อกำหนดสำหรับการพัฒนาเครื่องมือ ช่วยซื้อขาย MACD Sample Expert Advisor ซึ่งมีอยู่ในแพ็กเกจมาตรฐานของ MetaTrader 5 1. แนวคิดของระบบการซื้อขายมีดังนี้ : จะเข้าซื้อขายเมื่อ เส้นหลักและเส้นสัญญาณ ของ MACD ตัดกันในทิศทางแนวโน้ม ปัจจุบัน 2. แนวโน้ม จะถูกกำหนดโดยใช้ ค่าเฉลี่ยเคลื่อนที่แบบเอ็กซ์โปเนนเชียล ( Exponential Moving Average หรือ EMA) ตามช่วงเวลาที่ระบุ (InpMATrendPeriod) หากค่า
Symbol: Xauusd Timeframe: i want to choose Entry: 2 bullish candles in a row= buy order 2 bearish candles in a row= sell order Lotsize: i want to choose Tp 10 pips ( but i want to choose) Sl 50 pips ( i want to choose) I want to achieve 10 pips of profit every day. So if the first trade of the day is profitable, the ea will stop trading for the rest of that day. If the stop loss is hit, then I will need 6 winning
Hello all developers! I want ready made prop firm EA that is making around 3% monthly or overal 36% per year +/- Only serious offers please, don't waste my and your time. I am not an idiot. Thank you very much for your attention. Price is negotiable. Source of code required. Can be MT5, but can be also MT4
For only developer who understand Chaos/ Profiunity trading system by Bill WIlliams, Create The Profitunity System Trading based on Bill Williams Chaos theory, Trade based on Trend Affirmation in Daily, entry in H4, using Williams Fractal, Williams Alligator, Awesome Oscillator, Accelerator Oscillator, Market Facilitation Index. Balance Line, entry on Reversal, add on while market show continuation sign. Please quote

Informações sobre o projeto

Orçamento
10 USD