Tarea técnica
//@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)
Han respondido
1
Evaluación
Proyectos
175
25%
Arbitraje
23
13%
/
78%
Caducado
16
9%
Libre
2
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
3
Evaluación
Proyectos
2
0%
Arbitraje
0
Caducado
0
Libre
4
Evaluación
Proyectos
202
48%
Arbitraje
5
20%
/
60%
Caducado
2
1%
Libre
5
Evaluación
Proyectos
36
33%
Arbitraje
5
0%
/
80%
Caducado
0
Trabaja
Ha publicado: 2 ejemplos
6
Evaluación
Proyectos
85
28%
Arbitraje
8
13%
/
63%
Caducado
4
5%
Trabaja
7
Evaluación
Proyectos
90
29%
Arbitraje
24
13%
/
58%
Caducado
7
8%
Trabaja
8
Evaluación
Proyectos
31
23%
Arbitraje
20
10%
/
50%
Caducado
9
29%
Trabaja
9
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
10
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
11
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
12
Evaluación
Proyectos
601
34%
Arbitraje
64
20%
/
58%
Caducado
147
24%
Trabaja
Ha publicado: 1 artículo, 22 ejemplos
13
Evaluación
Proyectos
8
0%
Arbitraje
2
50%
/
0%
Caducado
1
13%
Trabaja
14
Evaluación
Proyectos
1
0%
Arbitraje
3
0%
/
100%
Caducado
1
100%
Libre
15
Evaluación
Proyectos
7
43%
Arbitraje
1
0%
/
100%
Caducado
0
Libre
16
Evaluación
Proyectos
265
29%
Arbitraje
0
Caducado
3
1%
Libre
Ha publicado: 2 ejemplos
17
Evaluación
Proyectos
285
77%
Arbitraje
13
69%
/
0%
Caducado
4
1%
Trabaja
18
Evaluación
Proyectos
168
43%
Arbitraje
3
33%
/
33%
Caducado
1
1%
Trabajando
Solicitudes similares
ZigZag based on oscillators is needed The idea of the indicator Create a ZigZag indicator, which is constructed based on extreme values determined using oscillators. It can use any classical normalized oscillator, which has overbought and oversold zones. The algorithm should first be executed with the WPR indicator, then similarly add the possibility to draw a zigzag using the following indicators: CCI Chaikin RSI
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
RSI indicator
130 - 150 USD
The Relative Strength Index (RSI) is a technical momentum indicator measuring the speed and change of price movements, scaled from 0 to 100 to identify overbought (>70) or oversold (<30) conditions. Developed by J. Welles Wilder Jr., it helps traders spot potential trend reversals or corrections.Imagine a stock, XYZ, is trending upwards.Overbought Signal: The price increases sharply, and the RSI rises to 75. This
I am looking for an experienced developer in MQL5 to build a fully AI and automated trading bot (Expert Advisor) for MetaTrader 5. The EA will trade XAUUSD only and will be based purely on price action and Smart Money Concepts (SMC), specifically focusing on liquidity sweeps, market structure shifts (MSS/CHoCH), and wick rejection entries at key points of interest (POIs). The system must follow a strict rule: no
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
Información sobre el proyecto
Presupuesto
35+ USD
Cliente
Encargos realizados1
Número de arbitrajes0