Converting an indicator from trading view to mql5

Tarea técnica

there is spesific indicator in trading view , i wanna to have this indivator in my mql5 so all we need to do is to converting this code to mql5 indicator thats it code script is available and indicator name is liquidity ditection  from Tflb  //@version=5
indicator("Liquidity Finder Alerts (Wrapper)", overlay=true)

// ایمپورت کتابخونه اصلی TFlab
import TFlab/LiquidityFinderLibrary/1 as Liq

// ورودی‌ها (مثل اندیکاتور اصلی)
sPP       = input.float(0.30, "Statics Sensitivity", minval=0.0, maxval=0.4, step=0.01)
dPP       = input.float(1.00, "Dynamics Sensitivity", minval=0.4, maxval=1.95, step=0.01)
SPP       = input.int(8, "Statics Pivot Period", minval=1)
DPP       = input.int(3, "Dynamics Pivot Period", minval=1)
showHLLs  = input.bool(true, "Show Statics High Lines")
showLLLs  = input.bool(true, "Show Statics Low Lines")
showHLLd  = input.bool(true, "Show Dynamics High Lines")
showLLd   = input.bool(true, "Show Dynamics Low Lines")

// فراخوانی کتابخونه برای رسم خطوط
Liq.LLF(SPP, DPP, sPP, dPP, showHLLs, showLLLs, showHLLd, showLLd)

// ساخت سیگنال‌ها روی چارت
ph = ta.pivothigh(high, SPP, SPP)
pl = ta.pivotlow(low, SPP, SPP)

breakHigh = not na(ph) and close > ph
breakLow  = not na(pl) and close < pl

plotshape(breakHigh, title="Break High", location=location.abovebar, 
     color=color.red, style=shape.triangleup, size=size.small, text="Liq↑")
plotshape(breakLow, title="Break Low", location=location.belowbar, 
     color=color.green, style=shape.triangledown, size=size.small, text="Liq↓")

// شرایط هشدار
alertcondition(breakHigh, title="Liquidity High Taken", 
     message="Price broke a Liquidity High")
alertcondition(breakLow, title="Liquidity Low Taken", 
     message="Price broke a Liquidity Low")
                   

Archivos adjuntos:

PNG
IMG_5291.png
402.0 Kb

Han respondido

1
Desarrollador 1
Evaluación
(10)
Proyectos
13
15%
Arbitraje
0
Caducado
1
8%
Trabaja
2
Desarrollador 2
Evaluación
(7)
Proyectos
14
29%
Arbitraje
1
100% / 0%
Caducado
4
29%
Libre
3
Desarrollador 3
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
4
Desarrollador 4
Evaluación
(44)
Proyectos
46
9%
Arbitraje
2
50% / 50%
Caducado
2
4%
Trabajando
5
Desarrollador 5
Evaluación
(6)
Proyectos
7
29%
Arbitraje
1
0% / 0%
Caducado
3
43%
Trabajando
6
Desarrollador 6
Evaluación
(13)
Proyectos
14
64%
Arbitraje
0
Caducado
0
Trabaja
7
Desarrollador 7
Evaluación
(259)
Proyectos
586
35%
Arbitraje
64
20% / 58%
Caducado
147
25%
Libre
Ha publicado: 1 artículo, 22 ejemplos
8
Desarrollador 8
Evaluación
(10)
Proyectos
15
27%
Arbitraje
0
Caducado
3
20%
Libre
9
Desarrollador 9
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Trabaja
10
Desarrollador 10
Evaluación
(258)
Proyectos
346
71%
Arbitraje
12
42% / 25%
Caducado
12
3%
Trabaja
Ha publicado: 14 ejemplos
11
Desarrollador 11
Evaluación
(438)
Proyectos
562
37%
Arbitraje
98
41% / 28%
Caducado
15
3%
Trabajando
12
Desarrollador 12
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Trabajando
13
Desarrollador 13
Evaluación
(170)
Proyectos
194
42%
Arbitraje
11
9% / 36%
Caducado
9
5%
Trabaja
Ha publicado: 3 ejemplos
14
Desarrollador 14
Evaluación
(6)
Proyectos
6
17%
Arbitraje
0
Caducado
2
33%
Trabaja
15
Desarrollador 15
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
Solicitudes similares
Ethereum Trading EA 30 - 35 USD
I am looking for an Expert Advisor (EA) that performs well on Ethereum. Ideally, it should be an HFT-style EA; a swing trading EA is also acceptable. I require the full MQL5 source code — the EA must be written entirely in MQL5 (no external languages such as Python). Performance target: Minimum 70% win rate with a 1:1 risk:reward. Input variables required: Stop Levels: Stop Loss (SL) and Take Profit (TP) Trailing
Hello MQL5 Developers, I would like to hire a developer to create a high-quality custom indicator for MT5 . The goal is to perfectly replicate the logic of the TradingView "Technical Ratings" summary, but with the crucial feature of displaying its historical values as lines on the chart. I will attach an image to this post that shows the exact logic and structure I need. Core Logic (as shown in the attached image)
Developing multi platform based copytrading solution Need a develper who can enahance funtionality of our existing MVP EAs for master and slave traders EAs are connected with REST API and Socket Server Master EA can broadcast trading signals from MT5 terminal as he performs actual trades on the platform. those trade could be using any bot or alogorithem or manula that is not in scope but realtime broadcast to server
Here's a detailed description of an Expert Advisor (EA) based on a candlestick-dependent strategy: Strategy Overview The EA will implement a trading strategy based on candlestick patterns, opening trades when a bullish candle is detected and avoiding trades when a bearish candle is detected. Key Features 1. *Candlestick Pattern Identification*: The EA will identify bullish and bearish candles based on their open and
How can we create an EA including a LLM like deepseek or chatgpt API? My main idea is the LLM makes the market analysis, a threshold on its confidence defines the risk per % it will use and also a dynamic valuation of the prediction/analysis should close trades earlier or later than the TP. Did you already build EAs based on LLMs
I need an EA based on breakouts strategy. I want a situation whereby if there is a rejection or consolidation in the chart, then the EA would wait till there's a breakout, then if the nearest rejected area got breakout with a "good candle stick" then the EA will then buy or sell depending on whether it's breakout to the upside or downside respectively. The good candle sticks that are considered for a breakout are
📌 DOGE/USDT Trading Bot – Full Strategy Current DOGE/USDT price: ≈ 0.2714 USDT (for reference only). Exchange: Binance Futures Margin type: Isolated Margin Leverage: x2 Pair: DOGE/USDT Language: Python (Binance API) ⸻ 🔹 Strategy Logic 1. Initial Entry • Open a Market Order with 2000 USDT as the base trade. • Base remains fixed for each cycle. 2. Reinforcement (During Downtrend) • Every 5 minutes during a price
I need a robot that combines several custom indicators I designed, used on two higher timeframes for market analysis, with entries on the 1-minute timeframe. It requires intelligent Martingale and Hedge money management. I need someone with sufficient expertise in hedging and Martingale. This strategy is very detailed, but I firmly believe it will definitely be profitable
Hello Developer I need a custom breakout + retest scoring system in TrendSpider . Breakout: valid if candle closes ≥ 0.4 × ATR20 above the line (lookback 8 bars, daily/weekly). Retest: valid within 20 bars if price low is within ±0.2 × ATR20 of the line → must trigger an alert. Scoring: add points for RVOL ≥ 1.3, SMA50 strong close, RSI 54–71, channel breakout, retest & hold, ATR expansion, undervaluation, SMA50
I need an indicator in Mt5 or trading view The indicator detects Double Top / Double Bottom patterns. Pattern is only valid if it forms during a clear impulsive leg (up for DT, down for DB) and divergence (( RSI)) . If the pattern appears inside a corrective move, it is ignored. But if it appears in the next impulsive leg after correction, it is accepted. (Impulse vs corrective is filtered using ATR/ADX/slope rules

Información sobre el proyecto

Presupuesto
30 - 40 USD
IVA (19%): 5.7 - 7.6 USD
Total: 36 - 47.6 USD
Para el ejecutor
27 - 36 USD
Plazo límite de ejecución
de 1 a 5 día(s)

Cliente

Encargos realizados1
Número de arbitrajes0