El 3aksiyat 0

MQL5 Experts C++ Python MySQL HTML

Specification

//@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)

Responded

1
Developer 1
Rating
(107)
Projects
175
25%
Arbitration
23
13% / 78%
Overdue
16
9%
Free
2
Developer 2
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
3
Developer 3
Rating
(2)
Projects
2
0%
Arbitration
0
Overdue
0
Free
4
Developer 4
Rating
(169)
Projects
202
48%
Arbitration
5
20% / 60%
Overdue
2
1%
Free
5
Developer 5
Rating
(33)
Projects
36
33%
Arbitration
5
0% / 80%
Overdue
0
Working
Published: 2 codes
6
Developer 6
Rating
(75)
Projects
85
28%
Arbitration
8
13% / 63%
Overdue
4
5%
Working
7
Developer 7
Rating
(62)
Projects
90
29%
Arbitration
24
13% / 58%
Overdue
7
8%
Working
8
Developer 8
Rating
(27)
Projects
31
23%
Arbitration
20
10% / 50%
Overdue
9
29%
Working
9
Developer 9
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
10
Developer 10
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
11
Developer 11
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
12
Developer 12
Rating
(268)
Projects
601
34%
Arbitration
64
20% / 58%
Overdue
147
24%
Working
Published: 1 article, 22 codes
13
Developer 13
Rating
(8)
Projects
8
0%
Arbitration
2
50% / 0%
Overdue
1
13%
Working
14
Developer 14
Rating
(1)
Projects
1
0%
Arbitration
3
0% / 100%
Overdue
1
100%
Free
15
Developer 15
Rating
(6)
Projects
7
43%
Arbitration
1
0% / 100%
Overdue
0
Free
16
Developer 16
Rating
(258)
Projects
265
29%
Arbitration
0
Overdue
3
1%
Free
Published: 2 codes
17
Developer 17
Rating
(242)
Projects
285
77%
Arbitration
13
69% / 0%
Overdue
4
1%
Working
18
Developer 18
Rating
(158)
Projects
168
43%
Arbitration
3
33% / 33%
Overdue
1
1%
Loaded
Similar orders
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 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

Project information

Budget
35+ USD

Customer

Placed orders1
Arbitrage count0