Stocks that have a lower close at least three consecutive times


Category:
0
0

It can be an unlimited amount of lower closes just need to be at least three. The time frame isn’t important but I guess we can use the daily chart for the code. Below is an example of what I mean (5 lower closes so the scan naturally detects it):

Attachments:
Marked as spam
Posted by (Questions: 12, Answers: 20)
Asked on January 8, 2019 2:49 pm
113 views
0
Private answer

plot scan = close < close[1] and close[1] < close[2];

Marked as spam
Posted by (Questions: 37, Answers: 4086)
Answered on January 13, 2019 9:24 am