Is there a stock screener that allows to scan for consecutive days events.
For example :Show stocks that have 5 days in a row negative returns
I looked at finviz but I can't see it there.
Thank you
This screen is best suited for charting software e.g. Ninja Trader, Amibroker.
I use Amibroker. This is not a software recommendation but just an example.
Filter = (ref(C,-4) > ref(C,-3)) AND (ref(C,-3) > ref(C,-2)) AND ( ref(C,-2) > ref(C,-1)) AND (ref(C,-1) > ref(C,0));
This is part of the screen results.
You can try Ninja Trader since is free for non-live trading.
Is there a stock screener that allows to scan for consecutive days events.
For example :Show stocks that have 5 days in a row negative returns
I looked at finviz but I can't see it there.
Thank you