指定
// 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
反馈
1
等级
项目
220
32%
仲裁
16
44%
/
25%
逾期
0
工作中
2
等级
项目
25
52%
仲裁
3
0%
/
100%
逾期
2
8%
空闲
3
等级
项目
459
39%
仲裁
94
44%
/
18%
逾期
73
16%
已载入
发布者: 2 代码
4
等级
项目
0
0%
仲裁
0
逾期
0
空闲
5
等级
项目
0
0%
仲裁
0
逾期
0
空闲
相似订单
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
项目信息
预算
30+ USD
客户
所下订单1
仲裁计数0