Covert trading view indi Pine script to MT5/MQL5 EA.

MQL5 专家 转化中

指定

Hello i want to covert trading view indi Pine script to MT5/MQL5 EA. 

Please tell me if you can do asap.

bellow is my source code:


//@version=5

indicator("V1.1.1 SQZMOM - CM_Ult và VFI", shorttitle="V1.1.1 SQZ-CM.Ult-VFI (SSG)", overlay=true)

// Điều kiện: 3 nến liên tiếp có xu hướng tăng
//cond = (close > open) and (close[1] > open[1]) and (close[2] > open[2])
// Tính toán độ dài của râu cho nến hiện tại
wick_length = high - math.max(open, close)  // Râu trên nen hien tai
tail_length = math.min(open, close) - low    // Râu dưới nen hien tai
body_length = math.abs(close - open) // Tính toán độ dài của thân nến hien tai
bhasWick = wick_length > 0 and tail_length > 0 // true neu co ca 2 rau
has_tail = tail_length > 0 // co rau duoi
has_wick = wick_length > 0 // co rau tren
wick_length1 = high[1] - math.max(open[1], close[1])  // Râu trên nen 1
tail_length1 = math.min(open[1], close[1]) - low[1]    // Râu dưới nen 1
body_length1 = math.abs(close[1] - open[1]) // Tính toán độ dài của thân nến 1
has_tail1 = tail_length1 > 0 // co rau duoi
has_wick1 = wick_length1 > 0 // co rau tren
wick_length2 = high[2] - math.max(open[2], close[2])  // Râu trên nen 1
tail_length2 = math.min(open[2], close[2]) - low[2]    // Râu dưới nen 1
body_length2 = math.abs(close[2] - open[2]) // Tính toán độ dài của thân nến 1
has_tail2 = tail_length2 > 0 // co rau duoi
has_wick2 = wick_length2 > 0 // co rau tren
condUp = (close > open) and (not has_tail)  and (close[1] > open[1]) and (close[2] > open[2])
condDown = (close < open) and (not has_wick) and (close[1] < open[1]) and (close[2] < open[2])

condUpAll = (close > open) and (not has_tail)  and (close[1] > open[1]) and (not has_tail1) and (close[2] > open[2]) and (not has_tail2)

condDownAll = (close < open) and (not has_wick) and (close[1] < open[1]) and (not has_wick1) and (close[2] < open[2]) and (not has_wick2)

bCheckABS = input(false, title="Kiểm tra giá trị tuyệt đối nến trước")
// tich hop de them dieu kien check theo SQZMOM
//------------BEGIN- SQZMOM-----------------------
length = input(20, title="BB Length")
mult = input(2.0,title="BB MultFactor")
lengthKC=input(20, title="KC Length")
multKC = input(1.5, title="KC MultFactor")

useTrueRange = input(true, title="Use TrueRange (KC)")
// Calculate BB
source = close
basis = ta.sma(source, length)
dev = multKC * ta.stdev(source, length)
upperBB = basis + dev
lowerBB = basis - dev

// Calculate KC
ma = ta.sma(source, lengthKC)
myRange  = useTrueRange ? ta.tr : (high - low)
rangema = ta.sma(myRange , lengthKC)
upperKC = ma + rangema * multKC
lowerKC = ma - rangema * multKC

sqzOn  = (lowerBB > lowerKC) and (upperBB < upperKC)
sqzOff = (lowerBB < lowerKC) and (upperBB > upperKC)
noSqz  = (sqzOn == false) and (sqzOff == false)

val = ta.linreg(source  -  math.avg(math.avg(ta.highest(high, lengthKC), ta.lowest(low, lengthKC)),ta.sma(close,lengthKC)), lengthKC,0)

//bcolor = iff( val > 0, iff( val > nz(val[1]), color.lime, color.green), iff( val < nz(val[1]), color.red, color.maroon))
bcolor = ( val > 0 ? ( val > nz(val[1])? color.lime: color.green): ( val < nz(val[1])? color.red : color.maroon))
scolor = noSqz ? color.blue : sqzOn ? color.black : color.gray
// nến hiện tại không râu
condUpSQZ = (val > 0)
condDownSQZ = (val < 0)


bCandleUp = (body_length > body_length1) and (close > open) and (close[1] > open[1])
bCandleDown = (body_length > body_length1) and (close < open) and (close[1] < open[1])
// end dieu kien than nen
// ---------kiem tra them dieu kien vơi chi so CM -Ult
ource = close
useCurrentRes = input(true, title="Use Current Chart Resolution?")
resCustom = input("60", title="Use Different Timeframe? Uncheck Box Above")
//resCustom = input(title="Use Different Timeframe? Uncheck Box Above", type=resolution, defval="60")
smd = input(true, title="Show MacD & Signal Line? Also Turn Off Dots Below")
sd = input(true, title="Show Dots When MacD Crosses Signal Line?")
sh = input(true, title="Show Histogram?")
macd_colorChange = input(true,title="Change MacD Line Color-Signal Line Cross?")
hist_colorChange = input(true,title="MacD Histogram 4 Colors?")
// Determine the current chart's resolution
currentResolution = timeframe.period

// Use the custom resolution if specified, or use the current chart's resolution
selectedResolution = na(resCustom) ? currentResolution : resCustom
res = useCurrentRes ? timeframe.period : resCustom
fastLength = input.int(12, minval=1)
slowLength=input.int(26,minval=1)
signalLength=input.int(9,minval=1)


fastMA = ta.ema(source, fastLength)
slowMA = ta.ema(source, slowLength)


macd = fastMA - slowMA
signal = ta.sma(macd, signalLength)
hist = macd - signal


outMacD = request.security(syminfo.tickerid, res, macd)
outSignal = request.security(syminfo.tickerid, res, signal)
outHist = request.security(syminfo.tickerid, res, hist)


histA_IsUp = outHist > outHist[1] and outHist > 0
histA_IsDown = outHist < outHist[1] and outHist > 0
histB_IsDown = outHist < outHist[1] and outHist <= 0
histB_IsUp = outHist > outHist[1] and outHist <= 0


//MacD Color Definitions
macd_IsAbove = outMacD >= outSignal
macd_IsBelow = outMacD < outSignal
// bổ sung thêm điều kiện tuyệt đối
bspan = true
if bCheckABS
    bspan := (outMacD != outSignal) and (math.abs(outMacD -outSignal) > math.abs(outMacD[1] -outSignal[1]))
macd_IsAbove := macd_IsAbove and bspan
macd_IsBelow := macd_IsBelow and bspan
// end điều kiện
condUpSQZ_CM_Ult = condUpSQZ and macd_IsAbove
condDownSQZ_CM_Ult = condDownSQZ and macd_IsBelow
//---

// ---- --begin tich hop them dieu kien kiem tra VFI
lengthVFI = input(130, title="VFI length")
coef = input(0.2)
vcoef = input(2.5, title="Max. vol. cutoff")
signalLengthVFI=input(5)
smoothVFI=input(false)
ma(x,y) => smoothVFI ? ta.sma(x,y) : x
typical=hlc3
inter = math.log( typical ) - math.log( typical[1] )
vinter = ta.stdev(inter, 30 )
cutoff = coef * vinter * close
vave = ta.sma( volume, lengthVFI )[1]
vmax = vave * vcoef
vc = (volume < vmax ? volume :vmax) //min( volume, vmax )
mf = typical - typical[1]
vcp = ( mf > cutoff ? vc : ( mf < -cutoff ? -vc :0))
vfi = ma(math.sum( vcp , lengthVFI )/vave, 3)
vfima=ta.ema( vfi, signalLengthVFI )
d=vfi-vfima
// them dieu kien tuyet doi để dự đoán xu hướng 2 đường đang tách nhau ra xa
spanvfi = true
if bCheckABS
    spanvfi := (vfi != vfima)  and (math.abs(d) > math.abs(vfi[1] -vfima[1]))
// end dieu kien tuyet doi

condDown_VFI = (d < 0) and spanvfi
condUp_VFI = (d >=0) and spanvfi
// -------------------end kiem tra VFI

// ket hop cac điều kiện
condUpSQZ_CM_VFI = condUpSQZ_CM_Ult and condUp_VFI and bCandleUp
condDownSQZ_CM_VFI = condDownSQZ_CM_Ult and condDown_VFI and bCandleDown

//Dừng lệnh BUY hoặc SELL
bstop = (((close > open) and (close[1] > open[1]) and (has_tail)) or ((close < open) and (close[1] < open[1]) and (has_wick))) //or body_length < 0.333 * body_length1


// end test
plotshape(condUpSQZ_CM_VFI, style=shape.triangleup, title="BUY  WITH SQZMOM vs CM_Ult vs VFI", location=location.bottom , color=color.purple,size=size.tiny)
alertcondition(condUpSQZ_CM_VFI, title="BUY  WITH SSG SQZMOM And CM_Ult vs VFI", message="Xu hướng tăng & SQZMOM &  CM_Ult vs VFI")
plotshape(condDownSQZ_CM_VFI, style=shape.triangledown, title="SELL WITH SQZMOM vs CM_Ult vs VFI", location=location.bottom, color=color.purple, size=size.tiny)
alertcondition(condDownSQZ_CM_VFI, title="SELL  WITH SQZMOM And CM_Ult vs VFI", message="Xu hướng giảm & SQZMOM & CM_Ult vs VFI")
plotshape(bstop, style=shape.xcross, title="STOP ALL 2.0", location=location.abovebar, color=color.red, size=size.tiny)


反馈

1
开发者 1
等级
(96)
项目
107
57%
仲裁
0
逾期
0
空闲
2
开发者 2
等级
(2)
项目
2
0%
仲裁
1
0% / 100%
逾期
0
空闲
3
开发者 3
等级
(131)
项目
173
39%
仲裁
4
25% / 50%
逾期
13
8%
工作中
相似订单
Im looking for an coder to code an EA: Trade management 1. opening trades according to the indicator 2. trades settings to choose from like: open all trades according to the signal open only trade 1,2,3 or 4 % per trade ( example 50/30/20 of the lot settings, with 4 trades it would be for example 50/30/10/10) 3. SL/Trailing settings: Move SL to entry after hitting TP1/TP2 or TP3 moving SL by % keep the original SL
Hi I'm looking to have 2 of my pinescript strategies converted to MQL5 and was wondering if you could first give me a quote for the more simple strategy and then for both the simple and complex strategy together. The simple strategy is a MACD crossover type thing that uses a special EMA script that filters out some ranging price action and also fractal candles for the stop loss. The second strategy is market
I want grate robot for making profits that know when to start a good trade and close a trade and must be active all time to avoid lost of money
I have developed a very strong TradingView strategy in Pine Script but unfortunately, a third-party connector is requiired and in my opinion, I want a more direct connection. I am not brilliant at coding, but I have coded the majority of the MT5 code and I would like you to make sure that the MT5 code matches my TradingView script and executes the same way as the TradingView script that I will provide if you are
Mbeje fx 50+ USD
I like to own my robot that why I want to build my own.i like to be a best to every robot ever in the life to be have more money
I need an MT5 EA that can do the following: I have to give the EA a price in advance, when the price is reached the EA has to automatically place a buy stop or sell stop order 0.5 pips below or above the price. Is this possible
Dr Pattern 30+ USD
good day i need the service of the seaso coder to help me fix my ea The Job required 1 knowledge of Mt4 and Mt5 indicator coding 2. Telegram code 3. ability to code indicator to work on multiple Time frame combine to trade 4 Ability to Join two or three indicator on same ir different time frame if you have these skill please let chart i will discuss the details of the Job inside to you The required day including
Good day, I want someone to help me create a universal news filter with on/off switch, with start and end settings, and drawdown control with magic number of EAs, etc. Thanks
Hello, I am looking for a professional programmer to optimize my existing EA integrating it with ChatGPT to analyze currencies using various methods to make the right trading decisions. i want it to be an EA that can be trusted to carry trade with the help of chat gpt and also have a very low drawdown
Hello, I am looking for a professional programmer to create a trading expert on the MT4 platform, integrating it with ChatGPT to analyze currencies using various methods to make the right trading decisions. Further details will be provided to the applicants later

项目信息

预算
30 - 100 USD
开发人员
27 - 90 USD