Spécifications
// 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
Répondu
1
Évaluation
Projets
220
32%
Arbitrage
16
44%
/
25%
En retard
0
Travail
2
Évaluation
Projets
25
52%
Arbitrage
3
0%
/
100%
En retard
2
8%
Gratuit
3
Évaluation
Projets
459
39%
Arbitrage
94
44%
/
18%
En retard
73
16%
Chargé
Publié : 2 codes
4
Évaluation
Projets
0
0%
Arbitrage
0
En retard
0
Gratuit
5
Évaluation
Projets
0
0%
Arbitrage
0
En retard
0
Gratuit
Commandes similaires
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
Informations sur le projet
Budget
30+ USD
Client
Commandes passées1
Nombre d'arbitrages0