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
(18)
Proyectos
22
9%
Arbitraje
6
33% / 50%
Caducado
1
5%
Trabaja
2
Desarrollador 2
Evaluación
(12)
Proyectos
24
50%
Arbitraje
1
100% / 0%
Caducado
6
25%
Libre
3
Desarrollador 3
Evaluación
(32)
Proyectos
35
34%
Arbitraje
5
0% / 80%
Caducado
0
Trabaja
Ha publicado: 2 ejemplos
4
Desarrollador 4
Evaluación
(141)
Proyectos
150
41%
Arbitraje
3
33% / 33%
Caducado
1
1%
Trabaja
5
Desarrollador 5
Evaluación
(28)
Proyectos
31
45%
Arbitraje
1
100% / 0%
Caducado
3
10%
Libre
6
Desarrollador 6
Evaluación
(23)
Proyectos
26
73%
Arbitraje
1
0% / 0%
Caducado
0
Trabaja
7
Desarrollador 7
Evaluación
(265)
Proyectos
597
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
(2)
Proyectos
3
0%
Arbitraje
4
0% / 50%
Caducado
0
Trabaja
10
Desarrollador 10
Evaluación
(278)
Proyectos
373
72%
Arbitraje
19
32% / 47%
Caducado
14
4%
Libre
Ha publicado: 14 ejemplos
11
Desarrollador 11
Evaluación
(442)
Proyectos
570
37%
Arbitraje
106
39% / 33%
Caducado
17
3%
Libre
12
Desarrollador 12
Evaluación
(1)
Proyectos
1
0%
Arbitraje
3
0% / 100%
Caducado
0
Libre
13
Desarrollador 13
Evaluación
(171)
Proyectos
195
42%
Arbitraje
13
8% / 54%
Caducado
9
5%
Libre
Ha publicado: 3 ejemplos
14
Desarrollador 14
Evaluación
(16)
Proyectos
18
28%
Arbitraje
1
0% / 0%
Caducado
2
11%
Libre
15
Desarrollador 15
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
16
Desarrollador 16
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
17
Desarrollador 17
Evaluación
(10)
Proyectos
14
43%
Arbitraje
0
Caducado
3
21%
Libre
18
Desarrollador 18
Evaluación
(6)
Proyectos
6
0%
Arbitraje
0
Caducado
2
33%
Libre
Solicitudes similares
حلل لي اصل مالي ) اكتب هنا مثلا XAU EUR USD USD اريد تحليلا تعليما و ليس توصية مالية ۱- نوع التحليل المطلوب : ( فني / اساسي / سلوك سعري ) ٢ - المدي الزمني : ( قصير / متوسط / طويل ) M15 / H1 / H4 / ) اذكر الفريمات المطلوبه + (D1 ما اريد استخراجه من التحليل : الاتجاه العام اقوي مستويات دعم و مقاومة رقمية سيناريو صعود و سيناريو هبوط مع شروط كل سيناريو ( IF / THEN ) اين يصبح السيناريو لاغيا مناطق دخول و خروج تعليمية (
I need modifications to an existing MT5 Expert Advisor. Modification 1 EA must be able to run on indices as well as forex , specifically: SP500 US100 US30 No other changes to the current logic Modification 2 Other alterations/notes: Opening breakout range option for 15min or 30 min from session start. 5 min fair value gap (FVG) break outside of the range (instead of 1 min). At least one of the candles must be within
AutoTrade_v4_Arbon-v4 35 - 250 USD
============================================================ GOLD AI INSTITUTIONAL TERMINAL v4.0 - AutoTrade + EA Indikator EDISI GABUNGAN Sinkronisasi MT4 Realtime + Dasbor PWA + AI Multi-TF Menggabungkan MT4 + Server AI Node.js ============================================================ CARA MENJALANKAN (MUDAH): -------------------------- 1. Ekstrak ZIP ke folder manapun (misal: C:\GoldAI\) 2. Buka folder hasil
I am looking for an experienced quantitative developer to analyze and optimize an MT5 Expert Advisor that I have already developed. The EA is relatively complex and includes: Multiple strategies (Trend Pullback, Breakout, Mean Reversion, EMA Reclaim) Scoring system combining technical score and probabilistic filter Regime detection (ADX based) Volatility filters (ATR regime) Correlation and cluster exposure control
Until zone detection is coded , you will be from that point . Trailing Stop Optimization for live chart . Apply with Specific Currency Support . Clean Code . Zone Upper Limit and Lower Limit . Apply with careful understanding of the project requirement
Subject: Professional MT5 Trading Bot Inquiry - Pre-Purchase Requirements Dear [Bot Name/Company Name] Developers, Greetings, I am a professional trader seeking a highly professional and extremely powerful MT5 trading bot , and after extensive research, your product has caught my attention. However, before I click the payment button, I have specific requirements as I am not looking for an ordinary bot, but rather a
hello, please take a moment to review my project. It is for Quanttower. it is very detailed in the instructions. Thank you, Just let me know if you can do it and the whats the cost and timeframe
GoldAI_v2_FINAL 30 - 70 USD
========================================================== Terminal Institusional GOLD AI v2.10 Sinkronisasi Realtime MT4 + Dasbor PWA + AI Multi-TF ========================================================== CARA MENJALANKAN (MUDAH): -------------------------- 1. Ekstrak ZIP ke folder manapun (misal: C:\GoldAI\) 2. Buka folder hasil ekstrak 3. Klik dua kali: INSTALL.bat → installotomatis 4. Klik dua kali
Exe source code 70+ USD
Need a developer to help with a exe file and provide the source code, if you can do this please kidnly apply and tell me what you need to get this started
XAUUSD - TREND TRADER 30 - 500 USD
Find a good entry point and enter the trade .after the first profit of 25% is done then exit the trade .find the good market analysis of the trend and know when the market is on a good trend. After that now know the entry point and the take profit of the slot you have opened .have also a risk management strategy

Información sobre el proyecto

Presupuesto
30 - 40 USD
Plazo límite de ejecución
de 1 a 5 día(s)