ScalpingproDD

MQL5 Indicators Forex

Specification

// Indicateur Personnel de Scalping - STRICTEMENT CONFIDENTIEL
indicator("Scalping Pro (Privé)", shorttitle="ScalpPRO", overlay=true)

// === Paramètres Utilisateur ===
emaFastLen = input.int(9, title="EMA Rapide")
emaSlowLen = input.int(21, title="EMA Lente")
rsiLen = input.int(7, title="RSI Période")
src = input.source(close, title="Source")
minVol = input.float(100000, title="Volume minimum")

// === Indicateurs Techniques ===
emaFast = talib.ema(src, emaFastLen)
emaSlow = talib.ema(src, emaSlowLen)
rsi = talib.rsi(src, rsiLen)
volOK = volume > minVol

// === Logique de Scalping ===
buy = emaFast > emaSlow and rsi > 55 and volOK
sell = emaFast < emaSlow and rsi < 45 and volOK

// === Affichage EMA ===
plot(emaFast, color=color.lime, title="EMA Rapide")
plot(emaSlow, color=color.red, title="EMA Lente")

// === Couleur des Bougies ===
bc = buy ? color.green : sell ? color.red : na
barcolor(bc)

// === Signaux Visuels ===
plotshape(buy, title="Achat", location=location.belowbar, color=color.green)
plotshape(sell, title="Vente", location=location.abovebar, color=color.red)

// === RSI Sub-Panel ===
plot(rsi, title="RSI", color=color.blue, overlay=false)
hline(55, color=color.gray)
hline(45, color=color.gray)
hline(50, color=color.gray, title="Médiane")$0

Responded

1
Developer 1
Rating
(144)
Projects
220
32%
Arbitration
16
44% / 25%
Overdue
0
Working
2
Developer 2
Rating
(21)
Projects
25
52%
Arbitration
3
0% / 100%
Overdue
2
8%
Free
3
Developer 3
Rating
(284)
Projects
459
39%
Arbitration
94
44% / 18%
Overdue
73
16%
Loaded
Published: 2 codes
4
Developer 4
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
5
Developer 5
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
Similar orders
Salut je besoin de quelqu'un qui peut me faire l’indicateur arrow donc l’image je joint en annexe. Exactement pareille mais sa plus grande spécificités est que l’indicateur ne doit pas disparaître apres qu’il est apparu meme si ce un faut signals il doit resté actife. Note l’indicateur doit ne doit pas apparaitre n’importe quand ni comment mais doit examiné avec exactitude la zone de block order et celui de support
BONSOIR/BONJOUR J'ai à ma disposition un système de plusieurs indicateurs que j'utilise. J'observe l'ensemble de ces indicateurs pour déclencher un achat/vente dans une condition particulière des indicateurs. je veux formaliser tout ça dans un robot de trading automatique qui déclenchera les positions dans ces conditions particulières

Project information

Budget
30+ USD

Customer

Placed orders1
Arbitrage count0