Tarea técnica
// 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
Han respondido
1
Evaluación
Proyectos
219
32%
Arbitraje
16
44%
/
25%
Caducado
0
Libre
2
Evaluación
Proyectos
25
52%
Arbitraje
3
0%
/
100%
Caducado
2
8%
Libre
3
Evaluación
Proyectos
459
39%
Arbitraje
95
43%
/
18%
Caducado
73
16%
Trabaja
Ha publicado: 2 ejemplos
Solicitudes similares
( a brief explanation if interested let's talk and I would be even more precise ) 📘 Strategy (FAYE SESSION) 🕐 1. Trading Sessions (Senegal Time) You don't use this strategy that during these three specific sessions: Session Senegal Hours 🗾 Tokyo 00h00 – 09h00 🇬🇧 London 07h00 – 16h00 🗽 New York 12h00 – 21h00 🕯️ 2. Choosing the candle to trace the range When you log in, you observe the M3 bougie (ex. 07h03). And
J'ai développé un expert advisor (EA), mais je rencontre des difficultés pour corriger plusieurs erreurs dans le code. Actuellement, il y a environ 30 erreurs que je ne parviens pas à résoudre seul. J'ai besoin de l'aide d'un expert en programmation MQL5 pour analyser et corriger ces problèmes afin que mon EA fonctionne correctement
Información sobre el proyecto
Presupuesto
30+ USD
Cliente
Encargos realizados1
Número de arbitrajes0