SCREENER CON CANDELA DOJI PER LONG
- This topic has 4 replies, 2 voices, and was last updated 2 years ago by .
Viewing 5 posts - 1 through 5 (of 5 total)
Viewing 5 posts - 1 through 5 (of 5 total)
Similar topics:
Forums › ProRealTime forum Italiano › Supporto ProScreener › SCREENER CON CANDELA DOJI PER LONG
Roberto chiedevo uno screener su grafici daily, dove dopo una discesa del 20-30% (parametro a piacimento) nell ultimo mese (parametro che si possa cambiare) veda il formarsi di una doji di indecisone per un eventuale entrata long. Grazie mille
Eccolo:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
Timeframe(Monthly) MesePrecedente = close[1] MeseCorrente = close // ----------------------------- Timeframe(Daily) PerCent = ((MeseCorrente / MesePrecedente) - 1) * 100 c1 = (PerCent <= -20) AND (PerCent >= -30) // Corpo = abs(open - close) OmbraSuperiore = high - max(open,close) OmbraInferiore = min(open,close) - low c2 = range >= average[5,0](range) //Range >= alla media del Range delle ultime 5 candele, oppure // puoi scrivere: range >= 30 * PiopSize, per indicare il minimo di pips c3 = Corpo <= (range * 0.10) //Il corpo non deve essere superiore al 10% del range c4 = OmbraSuperiore >= 0 //l'Ombra superiore può essere anche assente c5 = OmbraInferiore >= 0 //l'Ombra inferiore può essere anche assente Doji = c3 AND c4 AND c5 // Timeframe(default) Cond = c1 AND c2 AND Doji SCREENER[Cond] |
Appena ho un pò di tempo te li faccio.
Con Inside BAR:
1 2 3 4 5 6 7 8 9 10 11 |
N = 10 //10 periodi per il doppio minimo InsideBar = (high < high[1]) AND (low > low[1]) LL = lowest[N](min(open[1],close[1])) Conto = 0 FOR i = 1 TO N IF (low[i] <= LL) AND (min(close[i],open[i]) > LL) THEN Conto = Conto + 1 ENDIF NEXT Cond = InsideBar AND (Conto >= 2) SCREENER[Cond] |
Con PinBAR:
1 2 3 4 5 6 7 8 9 10 11 |
N = 10 //10 periodi per il doppio minimo PinBAR = (min(open,close) - low) >= (Range * 0.8) Conto = 0 LL = lowest[N](low[1]) FOR i = 1 TO N IF (low[i] <= LL) AND (close[i] > LL) THEN Conto = Conto + 1 ENDIF NEXT Cond = PinBAR AND (Conto >= 2) AND (open <> close) SCREENER[Cond] |
Find exclusive trading pro-tools on