El 3aksiyat 0

Spécifications

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

Répondu

1
Développeur 1
Évaluation
(107)
Projets
175
25%
Arbitrage
23
13% / 78%
En retard
16
9%
Gratuit
2
Développeur 2
Évaluation
Projets
0
0%
Arbitrage
0
En retard
0
Gratuit
3
Développeur 3
Évaluation
(2)
Projets
2
0%
Arbitrage
0
En retard
0
Gratuit
4
Développeur 4
Évaluation
(169)
Projets
202
48%
Arbitrage
5
20% / 60%
En retard
2
1%
Gratuit
5
Développeur 5
Évaluation
(33)
Projets
36
33%
Arbitrage
5
0% / 80%
En retard
0
Travail
Publié : 2 codes
6
Développeur 6
Évaluation
(75)
Projets
85
28%
Arbitrage
8
13% / 63%
En retard
4
5%
Travail
7
Développeur 7
Évaluation
(62)
Projets
90
29%
Arbitrage
24
13% / 58%
En retard
7
8%
Travail
8
Développeur 8
Évaluation
(27)
Projets
31
23%
Arbitrage
20
10% / 50%
En retard
9
29%
Travail
9
Développeur 9
Évaluation
Projets
0
0%
Arbitrage
0
En retard
0
Gratuit
10
Développeur 10
Évaluation
Projets
0
0%
Arbitrage
0
En retard
0
Gratuit
11
Développeur 11
Évaluation
Projets
0
0%
Arbitrage
0
En retard
0
Gratuit
12
Développeur 12
Évaluation
(268)
Projets
601
34%
Arbitrage
64
20% / 58%
En retard
147
24%
Travail
Publié : 1 article, 22 codes
13
Développeur 13
Évaluation
(8)
Projets
8
0%
Arbitrage
2
50% / 0%
En retard
1
13%
Travail
14
Développeur 14
Évaluation
(1)
Projets
1
0%
Arbitrage
3
0% / 100%
En retard
1
100%
Gratuit
15
Développeur 15
Évaluation
(6)
Projets
7
43%
Arbitrage
1
0% / 100%
En retard
0
Gratuit
16
Développeur 16
Évaluation
(258)
Projets
265
29%
Arbitrage
0
En retard
3
1%
Gratuit
Publié : 2 codes
17
Développeur 17
Évaluation
(242)
Projets
285
77%
Arbitrage
13
69% / 0%
En retard
4
1%
Travail
18
Développeur 18
Évaluation
(158)
Projets
168
43%
Arbitrage
3
33% / 33%
En retard
1
1%
Chargé
Commandes similaires
I am looking to buy a ready-made automated trading robot / EA that works on the Tradovate platform and is proven to pass prop firm challenges for Apex Trader Funding, Tradeify, and Lucid Trading.Key Requirements (must be ready-made or very close to plug-and-play):Fully functional on Tradovate (native or via stable bridge/copier/webhook/API integration – MT5 EA + Tradovate bridge is acceptable if it works reliably)
Alex 1000+ USD
Нужен бот для скальпинга именно на Python. Работа напрямую через API биржи (без привязки к TradingView и MetaTrader). Бот будет запускаться локально на ноутбуке / VPS. Критически важна скорость (использование асинхронности, WebSockets
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
I need a very advanced and intelligent MT5 Expert Advisor coded in MQL5 for XAUUSD, based on ICT + CRT + Smart Money Concepts. The goal is not a simple robot, but a professional decision-making system with strong filters, risk control, and high-quality trade selection. The EA must include: 1. Multi-Timeframe Analysis - D1 / H4 / H1 bias - M15 / M5 entry confirmation - Bullish or bearish market structure - BOS, CHoCH
I have a 90% completed project with the execution part left to complete, I have been struggling to complete this section and I need help from someone expert in MQL5 with knowledge on forex trading and ICT Concepts coding. Contact me for further details
Patricia Ukawilu 6:43 PM I need help creating an EA to optimize my trade. I already have a preliminary pine script which I will want optimized and create an EA from it to optimize my trade on MT4. I also subscribed to a signal app. I’m looking to automate the execution of the signal from the app so as not to miss out on good trades
I am looking for an experienced MQL5 developer with Python/data analysis skills. I have my own MT5 Strategy Tester reports, exported trade history, and market CSV data. I need help analyzing these files and developing a new independent Expert Advisor based on clearly defined, statistically tested, and validated trading rules. Tasks: Analyze my MT5 Strategy Tester reports and exported trade history. Compare historical
We are looking for a developer to finish and stabilize an existing Kalshi trading bot (~60% complete) built in TypeScript. This is not a MetaTrader EA. The system interacts with the Kalshi API and requires strong understanding of execution logic, order handling, and state management. Scope of Work: Review and understand existing TypeScript codebase Complete missing functionality Fix execution issues (order placement
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

Informations sur le projet

Budget
35+ USD

Client

Commandes passées1
Nombre d'arbitrages0