Ciao a tutti.
Qualcuno può gentilmente darmi la formula ProScreener relativa alle evidenze sia di Hammers sia di Shooting Stars?
Al di là che gli stessi stiano rispettivamente in fondo a un downtrend o sopra a un uptrend.
Vi ringrazio in anticipo.
Fausto
Eccolo:
body = close-open
abody = abs(body)
if range > 0 then
ratio = abody / range
else
ratio = 0
endif
bodytop = max(open, close)
bodybottom = min(open, close)
shadowtop = high-bodytop
shadowbottom = bodybottom-low
longcandle = (ratio > 0.6)
//
Hammer = (body[1]<0 and longcandle[1] and low<low[1] and shadowbottom>2*abody and shadowtop<0.3*abody)
ShootingStar = (body[1]>0 and longcandle[1] and high>high[1] and shadowtop>2*abody and shadowbottom<0.3*abody)
SCREENER[Hammer OR ShootingStar]
Grazie mille Roberto.
Purtroppo non mi ritorna screen su nessun mercato.
Non è che magari dovrei modificare qualche parametro?
Grazie ancora.
Fausto
A me un po’ li ha trovati. L’ho provato sul Giornaliero e su azioni ITA+UK+USA.