Hi,
Is it possible to make a screeners that does on daily base following:
I would like to see all the stocks that have risen 30% the last 90 days and since than have decreased in price by at least 5%
gr Marco
JSParticipant
Veteran
Hi Marco,
Hereby the screener…
C1=Close[1]>1.3*Close[91]
C2=Close<0.95*Close[1]
Screener[C1 and C2](Close[1] as "Close yesterday")
Thanks JS. Really helpfull
Hi JS,
It seems that it only shows stocks that have declined 5% yesterday. I am looking for all the stocks that have risen at least 30% in the last 90 days and are now at least 5% lower then the highest price in the last 90 days.
gr Marco
JSParticipant
Veteran
Hi Marco,
Hereby the updated screener…
C1=Close>1.3*Close[90]
C2=Close<0.95*Highest[90](High)
Screener[C1 and C2](Highest[90](High) as "HH last 90 days")