New Members: Be sure to confirm your email address by clicking on the link that was sent to your email inbox. You will not be able to post messages until you click that link.
Hello! Can someone advise me on how to create either a scan or an alert when when of my chartlists has a symbol in it that has been down more than 5 days in a row?
thanks!
0
Comments
[ put your list here]
and [max(6,ROC(1)) < 0]
There is the Count Up and Count Down functions that can be used to find a number of Ups or Downs in a given period. Like Up 15 periods in the last 25 periods.
"and [Count Up(25, close) >= 15]"
The Streak only looks at consecutive occurrences of the indicator followed by the requirement
"and [Streak Up(close) > 5]"
You can put other indicators instead of close if you like.