El 3aksiyat 0

指定

//@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
開発者 1
評価
(107)
プロジェクト
175
25%
仲裁
23
13% / 78%
期限切れ
16
9%
2
開発者 2
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
3
開発者 3
評価
(2)
プロジェクト
2
0%
仲裁
0
期限切れ
0
4
開発者 4
評価
(169)
プロジェクト
202
48%
仲裁
5
20% / 60%
期限切れ
2
1%
5
開発者 5
評価
(33)
プロジェクト
36
33%
仲裁
5
0% / 80%
期限切れ
0
仕事中
パブリッシュした人: 2 codes
6
開発者 6
評価
(75)
プロジェクト
85
28%
仲裁
8
13% / 63%
期限切れ
4
5%
仕事中
7
開発者 7
評価
(62)
プロジェクト
90
29%
仲裁
24
13% / 58%
期限切れ
7
8%
仕事中
8
開発者 8
評価
(27)
プロジェクト
31
23%
仲裁
20
10% / 50%
期限切れ
9
29%
仕事中
9
開発者 9
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
10
開発者 10
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
11
開発者 11
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
12
開発者 12
評価
(268)
プロジェクト
601
34%
仲裁
64
20% / 58%
期限切れ
147
24%
仕事中
パブリッシュした人: 1 article, 22 codes
13
開発者 13
評価
(8)
プロジェクト
8
0%
仲裁
2
50% / 0%
期限切れ
1
13%
仕事中
14
開発者 14
評価
(1)
プロジェクト
1
0%
仲裁
3
0% / 100%
期限切れ
1
100%
15
開発者 15
評価
(6)
プロジェクト
7
43%
仲裁
1
0% / 100%
期限切れ
0
16
開発者 16
評価
(258)
プロジェクト
265
29%
仲裁
0
期限切れ
3
1%
パブリッシュした人: 2 codes
17
開発者 17
評価
(242)
プロジェクト
285
77%
仲裁
13
69% / 0%
期限切れ
4
1%
仕事中
18
開発者 18
評価
(158)
プロジェクト
168
43%
仲裁
3
33% / 33%
期限切れ
1
1%
取り込み中
類似した注文
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

プロジェクト情報

予算
35+ USD

依頼者

出された注文1
裁定取引数0