rising three methods
Forums › ProRealTime forum Français › Support ProScreener › rising three methods
- This topic has 3 replies, 2 voices, and was last updated 4 weeks ago by
Iván.
-
-
01/23/2025 at 11:18 PM #24304601/24/2025 at 1:08 PM #243051
Bonjour. Désolé, c'est peut-être le traducteur, mais ce n'est pas très clair pour moi. Que veux-tu faire exactement ? En fonction des indicateurs sur lesquels vous souhaitez créer le filtre. Je ne sais pas si vous voulez dire ceci :
1screener[yourConditions](method1 as "M1",method2 as "M2")Selon la version que vous possédez (complète ou premium), vous pouvez filtrer par 1 ou 2 méthodes.
01/24/2025 at 2:20 PM #24306201/24/2025 at 6:01 PM #243075Ok, j'ai compris. Il va être difficile de rencontrer ce patron… si vous passez le screener, vous ne pourrez pas le sauver.
123456789101112131415161718192021222324252627282930// ------------------------------------- //// SCREENER FOR RISING THREE METHODS// ------------------------------------- //// Pattern parametersMaxBodyRatio = 0.3 // Maximum proportion of the small candles' body relative to the large initial candlesmaCandle = average[10](high - low) // Average size of the last 10 candles// Condition 1: Large bullish candle compared to the averageLargeBullish = (close[4] > open[4]) AND ((high[4] - low[4]) > 1.5 * smaCandle) AND ((close[4] - open[4]) > (high[4] - low[4]) * 0.6)// Condition 2: Three small candles within the range of the large initial candlecand1 = (high[4] > high[1]) AND (low[4] < low[1]) AND (ABS(close[1] - open[1]) <= MaxBodyRatio * (close[4] - open[4]))cand2 = (high[4] > high[2]) AND (low[4] < low[2]) AND (ABS(close[2] - open[2]) <= MaxBodyRatio * (close[4] - open[4]))cand3 = (high[4] > high[3]) AND (low[4] < low[3]) AND (ABS(close[3] - open[3]) <= MaxBodyRatio * (close[4] - open[4]))SmallCandles = cand1 AND cand2 AND cand3// Condition 3: Large bullish final candle breaking the high of the first candleFinalBullish = (close > open) AND (close > high[4]) AND ((high - low) > smaCandle) AND ((close - open) > (high - low) * 0.6)// Condition 4: Two red candlesred1 = open[1] > close[1]red3 = open[3] > close[3]redcandles = red1 AND red3// Total pattern conditionPatternDetected = LargeBullish AND SmallCandles AND FinalBullish AND redcandles// Screener outputSCREENER[PatternDetected](close as "close")Si vous créez un indicateur pour voir comment fonctionner, vous verrez parfois que cette configuration est effectuée. Vous pouvez varier les coefficients qu'il peut et les conditions pour générer votre buscador le plus ajusté à ce que vous faites. J'espère que c'est votre Sirva de base.
-
AuthorPosts
Find exclusive trading pro-tools on