指定
//@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)
反馈
1
等级
项目
175
25%
仲裁
23
13%
/
78%
逾期
16
9%
空闲
2
等级
项目
0
0%
仲裁
0
逾期
0
空闲
3
等级
项目
2
0%
仲裁
0
逾期
0
空闲
4
等级
项目
202
48%
仲裁
5
20%
/
60%
逾期
2
1%
空闲
5
等级
项目
36
33%
仲裁
5
0%
/
80%
逾期
0
工作中
发布者: 2 代码
6
等级
项目
85
28%
仲裁
8
13%
/
63%
逾期
4
5%
工作中
7
等级
项目
90
29%
仲裁
24
13%
/
58%
逾期
7
8%
工作中
8
等级
项目
31
23%
仲裁
20
10%
/
50%
逾期
9
29%
工作中
9
等级
项目
0
0%
仲裁
0
逾期
0
空闲
10
等级
项目
0
0%
仲裁
0
逾期
0
空闲
11
等级
项目
0
0%
仲裁
0
逾期
0
空闲
12
等级
项目
601
34%
仲裁
64
20%
/
58%
逾期
147
24%
工作中
发布者: 1 文章, 22 代码
13
等级
项目
8
0%
仲裁
2
50%
/
0%
逾期
1
13%
工作中
14
等级
项目
1
0%
仲裁
3
0%
/
100%
逾期
1
100%
空闲
15
等级
项目
7
43%
仲裁
1
0%
/
100%
逾期
0
空闲
16
等级
项目
265
29%
仲裁
0
逾期
3
1%
空闲
发布者: 2 代码
17
等级
项目
285
77%
仲裁
13
69%
/
0%
逾期
4
1%
工作中
18
等级
项目
168
43%
仲裁
3
33%
/
33%
逾期
1
1%
已载入
相似订单
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
Advanced ICT + CRT Smart Money Expert Advisor for MT5
300 - 1000 USD
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
项目信息
预算
35+ USD
客户
所下订单1
仲裁计数0