Reversal Stoch Adx Pattern
Forums › ProRealTime forum Italiano › Supporto ProBuilder › Reversal Stoch Adx Pattern
- This topic has 3 replies, 2 voices, and was last updated 2 years ago by robertogozzi.
-
-
09/20/2022 at 8:21 PM #201106
Buongiorno a tutti.
Chiedo un aiuto per questo indicatore reversal:
Per il LONG:
Dev’esserci un chiaro trend DOWN Hammer fuori dalle BB Stocastico in IPERVENDUTO (<20) ADX > 40 Per lo SHORT:
Dev’esserci un chiaro trend UP Shooting Star sulle/fuori dalle BB Stoch in IPERCOMPRATO (>80) ADX > 40 Grazie in anticipo.
F.
09/22/2022 at 5:42 PM #201212“chiaro” trend è un effetto visivo. Un software ha bisogno di parametri ben definiti per rilevarlo. Possono essere un prezzo che supera una certa media (o che l’ha superata già da N candele), oppuure un prezzo che supera la linea mediana delle Bande di Bollinger, oppure il prezzoche nelle ultime N candele fa, rispetto alle N candele precedenti, Massimi e Minimi più alti (o più bassi), ecc…
Se mi dai un’indicazione dei criteri che desideri per riconoscere il trend te lo faccio.
09/22/2022 at 6:40 PM #201219Hai ragione Roberto.
Scusa.
Direi semplicemente che il
- Prezzo > EMA21 e anche Prezzo > EMA200 in caso di trend UP e
- Prezzo < EMA21 e anche Prezzo < EMA200 in caso di trend DOWN
Grazie sempre.
Fausto
10/02/2022 at 4:50 PM #201786Eccolo:
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647Body = abs(close - open)UpperShadow = high - max(open,close)LowerShadow = min(open,close) - low//--------------------------------------------------------------------------------------------------------------------// Hammer//Ha1 = LowerShadow >= (Body * 3) //Lower Shadow 3 times longer than the bodyHa2 = close >= (high-(range * 0.25))//must close in the upper 25% of its rangeHa3 = low = lowest[20](low) //its Low must be the lowest one of the last 20 candles (1=disabled)Hammer = Ha1 AND Ha2 AND Ha3//--------------------------------------------------------------------------------------------------------------------// Shooting Star//Ss1 = UpperShadow >= (Body * 3) //Upper Shadow 3 times longer than the bodySs2 = LowerShadow <= Body //Lower Shadow must be max as large as the bodySs3 = close <= (low+(range * 0.25)) //must close in the lower 25% of its rangeSs4 = high = highest[20](high) //its High must be the highest one of the last 20 candles (1=disabled)ShootingStar = Ss1 AND Ss2 AND Ss3 AND Ss4//--------------------------------------------------------------------------------------------------------------------BBVal = 20 //20 BB periodsBBdev = 2.0 //2.0 BB deviationBBavg = average[BBval,0](close) //BB mean (middle line)UpperBB = BBavg + ((std[BBval](close)) * BBdev) //BB Upper BandLowerBB = BBavg - ((std[BBval](close)) * BBdev) //BB Lower Band//--------------------------------------------------------------------------------------------------------------------Ema21 = average[21,1](close) //21 periodsEma200 = average[200,1](close) //200 periodsUPtrend = (close > Ema21) AND (close > Ema200)DOWNtrend = (close < Ema21) AND (close < Ema200)MyStochasticK = Stochastic[14,3](close)MyADX = ADX[14]//--------------------------------------------------------------------------------------------------------------------L1 = low < LowerBBS1 = high > UpperBBL2 = MyStochasticK < 20S2 = MyStochasticK > 80L3 = MyADX > 40S3 = L3CondL = L1 AND L2 AND L3 AND Hammer AND UPtrendCondS = S1 AND S2 AND S3 AND ShootingStar AND DOWNtrendSignal = 0IF CondL THENSignal = 1ELSIF CondS THENSignal = -1ENDIFRETURN Signal AS "Signal",0 AS"Zero" -
AuthorPosts
Find exclusive trading pro-tools on