Create an MQL5 code robot for this pine script from tradingview

MQL5 指标 专家

指定

//@version=2
study(title="Stoch_St", shorttitle="Stoch_St")
PDS = 8
EMAlen = 8
TriggerLen = 4
Overbought = input(80, minval=1)
Oversold = input(20, minval=1)
hline(Overbought, color=green, linestyle=line)
hline(Oversold, color=red, linestyle=line)

resCusts1 = input(title="Time_x1", defval="10")
resCusts2 = input(title="Time_x2", defval="20")
resCusts3 = input(title="Time_x3", defval="30")
resCusts4 = input(title="Time_x4", defval="40")
resCusts5 = input(title="Time_x5", defval="50")
resCusts6 = input(title="Time_x6", defval="60")
resCusts7 = input(title="Time_x7", defval="70")



xPreCalcs1 = security(tickerid, resCusts1, ema(stoch(close, high, low, PDS), EMAlen))
xDSSs1 = security(tickerid, resCusts1, ema(stoch(xPreCalcs1, xPreCalcs1, xPreCalcs1, PDS), EMAlen))
//xDSS = stoch(xPreCalc, xPreCalc, xPreCalc, PDS)
xTriggers1 = security(tickerid, resCusts1, ema(xDSSs1, TriggerLen))

xPreCalcs2 = security(tickerid, resCusts2, ema(stoch(close, high, low, PDS), EMAlen))
xDSSs2 = security(tickerid, resCusts2, ema(stoch(xPreCalcs2, xPreCalcs2, xPreCalcs2, PDS), EMAlen))
//xDSS = stoch(xPreCalc, xPreCalc, xPreCalc, PDS)
xTriggers2 = security(tickerid, resCusts2, ema(xDSSs2, TriggerLen))

xPreCalcs3 = security(tickerid, resCusts3, ema(stoch(close, high, low, PDS), EMAlen))
xDSSs3 = security(tickerid, resCusts3, ema(stoch(xPreCalcs3, xPreCalcs3, xPreCalcs3, PDS), EMAlen))
//xDSS = stoch(xPreCalc, xPreCalc, xPreCalc, PDS)
xTriggers3 = security(tickerid, resCusts3, ema(xDSSs3, TriggerLen))

xPreCalcs4 = security(tickerid, resCusts4, ema(stoch(close, high, low, PDS), EMAlen))
xDSSs4 = security(tickerid, resCusts4, ema(stoch(xPreCalcs4, xPreCalcs4, xPreCalcs4, PDS), EMAlen))
//xDSS = stoch(xPreCalc, xPreCalc, xPreCalc, PDS)
xTriggers4 = security(tickerid, resCusts4, ema(xDSSs4, TriggerLen))

xPreCalcs5 = security(tickerid, resCusts5, ema(stoch(close, high, low, PDS), EMAlen))
xDSSs5 = security(tickerid, resCusts5, ema(stoch(xPreCalcs5, xPreCalcs5, xPreCalcs5, PDS), EMAlen))
//xDSS = stoch(xPreCalc, xPreCalc, xPreCalc, PDS)
xTriggers5 = security(tickerid, resCusts5, ema(xDSSs5, TriggerLen))

xPreCalcs6 = security(tickerid, resCusts6, ema(stoch(close, high, low, PDS), EMAlen))
xDSSs6 = security(tickerid, resCusts6, ema(stoch(xPreCalcs6, xPreCalcs6, xPreCalcs6, PDS), EMAlen))
//xDSS = stoch(xPreCalc, xPreCalc, xPreCalc, PDS)
xTriggers6 = security(tickerid, resCusts6, ema(xDSSs6, TriggerLen))

xPreCalcs7 = security(tickerid, resCusts7, ema(stoch(close, high, low, PDS), EMAlen))
xDSSs7 = security(tickerid, resCusts7, ema(stoch(xPreCalcs7, xPreCalcs7, xPreCalcs7, PDS), EMAlen))
//xDSS = stoch(xPreCalc, xPreCalc, xPreCalc, PDS)
xTriggers7 = security(tickerid, resCusts7, ema(xDSSs7, TriggerLen))


xDSSsx = ((xDSSs1*1)+(xDSSs2*1)+(xDSSs3*1)+(xDSSs4*1)+(xDSSs5*2)+(xDSSs6*2)+(xDSSs7*2))/ 10
xTriggersx = ((xTriggers1*1)+(xTriggers2*1)+(xTriggers3*1)+(xTriggers4*1)+(xTriggers5*2)+(xTriggers6*2)+(xTriggers7*2))/ 10



buyzone = xDSSsx > xTriggersx ? 100 : 0
sellzone = xDSSsx < xTriggersx ? 100 : 0

buy = crossover(xDSSsx, xTriggersx)
sell = crossunder(xDSSsx, xTriggersx)

plot (buyzone, title="bzone", style=area, linewidth=1, color=lime, transp=10)
plot (sellzone, title="szone", style=area, linewidth=1, color=red, transp=10)

plot (buy, title="buy", style=histogram, linewidth=1, color=blue, transp=30)
plot (sell, title="sell", style=histogram, linewidth=1, color=red, transp=30)

plot(xDSSsx, title="DSS", style=line, linewidth=3, color=black, transp=0)
plot(xTriggersx, color=purple, title="Trigger")

反馈

1
开发者 1
等级
(258)
项目
396
28%
仲裁
69
19% / 49%
逾期
121
31%
空闲
2
开发者 2
等级
(195)
项目
395
28%
仲裁
155
20% / 52%
逾期
112
28%
空闲
相似订单
Convert Time Range Breakout Indicator to Strategy (Pine Script) I have an existing Time Range Breakout indicator on TradingView. I need a developer to convert it into a fully functional strategy with proper trade execution logic. Strategy Logic: Time Range: Define a specific time range (e.g., 03:00 – 04:30) During this time, the indicator marks the High and Low range Entry Conditions Buy when price touches the range
Hello, I’m looking for an experienced MQL4 developer to build a custom MT4 Expert Advisor based on a Koncorde-style indicator strategy. Here are the main requirements: 🔹 General Overview The EA must be a master EA , running on a single chart and managing multiple currency pairs simultaneously No need to attach EA to each chart Must support a configurable list of symbols 🔹 Indicator Requirement Develop a custom
I want to find a Developer to perform this work and settle payments in this Application. I undertake not to communicate with Applicants anywhere else except this Application, including third-party
Hi guys I’m looking for a coder who’s experienced in one script. The candidate must be familiar with fractals and self similarity. If you can’t code self similarity, please don’t bother contacting me ( respectfully). I just don’t want us to waste each others time. My budget is 100$. If that’s too low for you please, don’t contact me. Only contact me if you can code self similarity and can accept 100$. I will provide
I hope to acquire a profitable and existing expert advisor (EA) from the gold market, with complete source code, to add to our client portfolio. you can WECHAT: Faca7898 Please note EA when adding friends. It should be clarified that this does not require you to formulate or design new strategies. If you already have a verified, consistent, and production-ready EA, I am willing to purchase it immediately and engage
Core Requirements: Platform: MetaTrader 5 (MT5). Symbol: XAUUSD (Gold). Timeframes: M1 and M5 (user selectable). Trading Style: Scalping with controlled risk (not aggressive or high-risk strategies) -> adjustable, even better. Execution: Fast execution, optimized for gold market conditions. Frequence = adjustable, but there should be 10-20 trades per day. Strategy Logic: Use a reliable and conservative strategy
Eu preciso disso. A linha central do TMA (17,5,1.5) será a principal referência. Outra linha de média móvel (AVG) de 3 períodos decrescentes 2. As ordens serão as seguintes: abaixo, somente compra de TMA; acima, somente venda de TMA. O sinal de entrada será o seguinte: se o preço estiver acima da Média Móvel Tarifária (TMA), será apenas para venda; quando o preço se mantiver abaixo da Média Móvel Tarifária (AVG)
I am looking for non-repainting indicator to run in all sessions for scalping gold , happy to discuss if you have developed such indicators which can show profit and stop loss levels
Hello! I want to buy two indicators: A Support and Resistence Indicator and a Trendline Indicator. Support and Resistence Indicators needs to automatically draws Support and Resistance lines based on High and Low Candle in every time-frame (If possible time-frame needs to be in inputs and choose by me what time-frame i want indicator to draw lines) Trendline Indicator needs to automatically draws Trendline Channels
I need an experienced developer to carry out an indicator and trading robot using the following; moving averages risk ( take profit and stop loss) and maximum drawdown limits heiken ashi confirmation. trendline breakout if possible The developer will test this on a demo account that I will provide before conclusion as I don’t want anyone to waste my time trying to use chartgpt trial and error. If you can do the

项目信息

预算
50+ USD
截止日期
 1  10 天