Probleme de codage avec instructions SCREENER
Forums › ProRealTime forum Français › Support ProScreener › Probleme de codage avec instructions SCREENER
- This topic has 7 replies, 3 voices, and was last updated 2 days ago by
Fredaur.
-
-
09/10/2025 at 9:12 PM #250666
Bonjour
Rien ne ressort avec mon codage
Quelqu un pourrait il m’aider
merci par avance
Cordialement
// Conditions de base
SCREENER [Close > Average[200](Close)]
SCREENER [Average[200](Close) > Average[200](Close)[20]] // MM200 haussière// 3 bougies rouges
Bearish1 = (Close < Open)
Bearish2 = (Close[1] < Open[1])
Bearish3 = (Close[2] < Open[2])
SCREENER [Bearish1 AND Bearish2 AND Bearish3]// Volume inférieur à la moyenne
VolumeCondition = Volume < Average[20](Volume)
SCREENER [VolumeCondition]// RSI en survente
RSIValue = RSI[14](Close)
SCREENER [RSIValue < 30]// Faible volatilité (ATR < 2%)
ATRValue = ATR[14]
ATRPercent = (ATRValue / Close) * 100
SCREENER [ATRPercent < 2]// Proche d’un support
NearMA200 = (Abs(Close – Average[200](Close)) / Average[200](Close)) < 0.02
NearMA50 = (Abs(Close – Average[50](Close)) / Average[50](Close)) < 0.02
SCREENER [NearMA200 OR NearMA50]// Condition combinée
SCREENER [Close > Average[200](Close) AND Average[200](Close) > Average[200](Close)[20] AND Bearish1 AND Bearish2 AND Bearish3 AND VolumeCondition AND RSIValue < 30 AND ATRPercent < 2 AND (NearMA200 OR NearMA50)]09/10/2025 at 9:26 PM #250667Salut,
Essayez ces…Combined Screener123456789101112131415161718192021222324252627282930// Basic conditionsc1=Close > Average[200](Close)c2=Average[200](Close)> Average[200](Close)[20] // Bullish MM200// 3 bougies rougesBearish1=(Close<Open)Bearish2=(Close[1]<Open[1])Bearish3=(Close[2]<Open[2])c3=Bearish1 AND Bearish2 AND Bearish3// Volume below averageVolumeCondition=Volume<Average[20](Volume)c4=VolumeCondition// RSI in surventeRSIValue=RSI[14](Close)c5=RSIValue<30// Low volatility (ATR < 2%)ATRValue=AverageTrueRange[14]ATRPercent=(ATRValue/Close)*100c6=ATRPercent<2// Proche d’un supportNearMA200=(Abs(Close-Average[200](Close))/Average[200](Close))<0.02NearMA50=(Abs(Close-Average[50](Close))/Average[50](Close))<0.02c7=NearMA200 OR NearMA50// Condition combinéeSCREENER [c1 and c2 and c3 and c4 and c5 and c6 and c7]2 users thanked author for this post.
09/11/2025 at 7:22 AM #25067609/11/2025 at 7:32 AM #25067709/11/2025 at 9:55 AM #250686Pour mémoire, il ne peut y avoir qu’une seule instruction SCREENER dans un code de screener 🙂 Le code que tu postes me semble être généré par une IA n’est ce pas ?
le screener me ressort 3 bougies vertes !
Quel instrument, unité de temps ?
09/11/2025 at 10:48 AM #25069109/11/2025 at 12:06 PM #25069409/11/2025 at 2:44 PM #250696Bonjour
En fait cela fonctionne, mais je me suis du coup aperçu d’un problème.
La couleur des bougies est inversée sur mes graphiques prorealtimes contrairement à celles des graphiques zone bourse et abc bourse, comment est ce possible ?
-
AuthorPosts
Find exclusive trading pro-tools on