Specifiche
//@version=6
indicator("منظومة El_3aksiiya 0 المتكاملة", overlay=true, max_labels_count=500, max_boxes_count=500, max_lines_count=500)
// الألوان
color_accum = color.new(#0000FF, 85)
color_manip = color.new(#FFFF00, 80)
color_dist = color.new(#FFC0CB, 80)
color_elliot = #FF8C00
color_fib = #FFFF00
color_entry = #00FFFF
color_tp = #00FF00
rsiVal = ta.rsi(close, 14)
// نموذج AMD
var int barCount = 0
if ta.change(time("D")) != 0
barCount := 0
barCount += 1
is_accum = barCount <= 20
is_manip = barCount > 20 and barCount <= 40
is_dist = barCount > 40
if is_accum and ta.change(is_accum)
box.new(bar_index, high, bar_index + 20, low, bgcolor=color_accum, border_style=line_style_dotted)
if is_manip and ta.change(is_manip)
box.new(bar_index, high, bar_index + 20, low, bgcolor=color_manip, border_color=color_manip)
if is_dist and ta.change(is_dist)
box.new(bar_index, high, bar_index + 40, low, bgcolor=color_dist, border_style=line_style_arrow_right)
// موجات إليوت
pivHi = ta.pivothigh(high, 5, 5)
pivLo = ta.pivotlow(low, 5, 5)
var int last_piv_index = na
var float last_piv_price = na
// القمم
if not na(pivHi)
if not na(last_piv_index)
line.new(last_piv_index, last_piv_price, bar_index[5], pivHi, color=color_elliot, width=2)
label.new(bar_index[5], pivHi, "3/5", color=color_elliot, textcolor=color.white, style=label.style_label_down)
last_piv_index := bar_index[5]
last_piv_price := pivHi
// القيعان
if not na(pivLo)
if not na(last_piv_index)
line.new(last_piv_index, last_piv_price, bar_index[5], pivLo, color=color_elliot, width=2)
label.new(bar_index[5], pivLo, "A/C", color=color_elliot, textcolor=color.white, style=label.style_label_up)
last_piv_index := bar_index[5]
last_piv_price := pivLo
// فيبوناتشي
highestHigh = ta.highest(high, 20)
lowestLow = ta.lowest(low, 20)
fib_618 = lowestLow + (highestHigh - lowestLow) * 0.618
if ta.change(fib_618) != 0
line.new(bar_index - 10, fib_618, bar_index, fib_618, color=color_fib, width=2, extend=extend.right)
if ta.crossover(close, highestHigh[1])
line.new(bar_index - 5, highestHigh[1], bar_index, highestHigh[1], color=color.white, width=1)
if ta.crossunder(close, lowestLow[1])
line.new(bar_index - 5, lowestLow[1], bar_index, lowestLow[1], color=color.red, width=1)
// مناطق الدخول
buy_trigger = low < lowestLow[1] and close > lowestLow[1] and rsiVal < 35
sell_trigger = high > highestHigh[1] and close < highestHigh[1] and rsiVal > 65
var line entryLine = na
var line tpLine = na
if buy_trigger
line.delete(entryLine)
line.delete(tpLine)
entryLine := line.new(bar_index, close, bar_index + 20, close, color=color_entry, width=3)
tpLine := line.new(bar_index, close + (close - low) * 2, bar_index + 20, close + (close - low) * 2, color=color_tp, width=3)
label.new(bar_index, close, "El_3aksiiya 0 دخول شراء", color=color_entry, textcolor=color.black, style=label.style_label_up)
if sell_trigger
line.delete(entryLine)
line.delete(tpLine)
entryLine := line.new(bar_index, close, bar_index + 20, close, color=color_entry, width=3)
tpLine := line.new(bar_index, close - (high - close) * 2, bar_index + 20, close - (high - close) * 2, color=color_tp, width=3)
label.new(bar_index, close, "El_3aksiiya 0 دخول بيع", color=color_entry, textcolor=color.black, style=label.style_label_down)
Con risposta
1
Valutazioni
Progetti
175
25%
Arbitraggio
23
13%
/
78%
In ritardo
16
9%
Gratuito
2
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
3
Valutazioni
Progetti
2
0%
Arbitraggio
0
In ritardo
0
Gratuito
4
Valutazioni
Progetti
202
48%
Arbitraggio
5
20%
/
60%
In ritardo
2
1%
Gratuito
5
Valutazioni
Progetti
36
33%
Arbitraggio
5
0%
/
80%
In ritardo
0
In elaborazione
Pubblicati: 2 codici
6
Valutazioni
Progetti
85
28%
Arbitraggio
8
13%
/
63%
In ritardo
4
5%
In elaborazione
7
Valutazioni
Progetti
90
29%
Arbitraggio
24
13%
/
58%
In ritardo
7
8%
In elaborazione
8
Valutazioni
Progetti
31
23%
Arbitraggio
20
10%
/
50%
In ritardo
9
29%
In elaborazione
9
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
10
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
11
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
12
Valutazioni
Progetti
601
34%
Arbitraggio
64
20%
/
58%
In ritardo
147
24%
In elaborazione
Pubblicati: 1 articolo, 22 codici
13
Valutazioni
Progetti
8
0%
Arbitraggio
2
50%
/
0%
In ritardo
1
13%
In elaborazione
14
Valutazioni
Progetti
1
0%
Arbitraggio
3
0%
/
100%
In ritardo
1
100%
Gratuito
15
Valutazioni
Progetti
7
43%
Arbitraggio
1
0%
/
100%
In ritardo
0
Gratuito
16
Valutazioni
Progetti
265
29%
Arbitraggio
0
In ritardo
3
1%
Gratuito
Pubblicati: 2 codici
17
Valutazioni
Progetti
285
77%
Arbitraggio
13
69%
/
0%
In ritardo
4
1%
In elaborazione
18
Valutazioni
Progetti
168
43%
Arbitraggio
3
33%
/
33%
In ritardo
1
1%
Caricato
Ordini simili
Hi all I would like a strategy to be developed for LIMT ORDERS strategy for both Buy/sell limit for XAUUSD, US30 & DE30/40 on the M1 or M5 chart . I have my EA but it's not profitable. It should be a Limit order strategy with a profit factor of 2+ when back testing . You should consider that My EA has trailing stop and a trailing limit order. I have experience in coding in MQL4/5, I'm currently struggling I with
MT5 EA Developer for Structured ICT/SMC Market Logic Requirements Specification: I need an MT5 Expert Advisor only in MQL5. No indicator, no script, no DLL, and no external API. The EA must be built on a rule-based ICT/SMC-style framework with objective, backtestable logic. I am not looking for social-media-style ICT/SMC interpretation. I need a developer who can convert trading concepts into clear coding rules. The
Szukam doświadczonego programisty do stworzenia dedykowanego doradcy eksperckiego (EA) do tradingu. Programista powinien posiadać solidną wiedzę z zakresu MT5, logiki strategii, wskaźników, zarządzania ryzykiem i backtestingu. Doświadczenie w tworzeniu niezawodnych i profesjonalnych robotów handlowych będzie dodatkowym atutem. Proszę o kontakt, jeśli zrealizowałeś już podobne projekty. wszystkie szczeguły podam w
I need a good programmer to handle my new Ea
30 - 50 USD
I need an experience programmer on news based EA, the EA will be able to fetch or return both historical and current calendar data and implore them into trading, The rest EA details will be communicated in the chat section
Mambo
30+ USD
I need a bot that can trade weltrade synthetic indices that can be consistently making profits if you have one for deriv its also fine a bot that executes and closes trades automat Will be ideal
I am looking for an experienced MQL4/MQL5 developer to build a custom MT4 indicator from scratch or cracking my ex4 file that i provide to you. I already have an existing indicator (EX4) which produces highly accurate buy/sell signals. I want a similar indicator developed based on its observable behavior and signal structure. my existing indicator is pc id protected so you have to do PC ID security bypass and source
📌 Project Overview: I need a full Smart Trade Management System for MetaTrader 4/5. This is a complete trading ecosystem, not a simple EA. 📌 Core Features: Smart Money Management (risk-based lot calculation) Advanced Trading Toolbox (TradingView-style drawing tools) Central Master Dashboard (risk, filters, account control) Multi-account monitoring (MT4/MT5 synchronization) Real-time monitoring (spread, equity
Hello, i would like to have a ninjatrader indicator. I wanna to have a footprint indicator with delta, imbalances and big trades identifiable. Also I wanna sell it on whop. And it should be fully customisable in NT8
Zone detection is coded , you will be working from that point . Trailing Stop Optimization for live chart . Apply Specific Currency Support . Clean Code . Zone Upper Limit and Lower Limit
Hey, Looking for someone who creates EA for SUPPLY AND DEMAND EA ( SMC / ICT trading Concepts ) + AI Integration (More Details in private dicussion ) Includes; -Market Structure (HH,LH, LL, HL) -Supply and Demand Zones -Support and Resistance -Liquidity Zones -BOS (break of structure) -Retest & Respect of Zones -Candle stick Closure confirmations - Identify Price action - Analyze different Time Frames (1H, 5M
Informazioni sul progetto
Budget
35+ USD
Cliente
Ordini effettuati1
Numero di arbitraggi0