Let's say I want to define my list of candidate stocks by filtering the list of NASDAQ New Highs recorded the previous trading day, is that possible? How?
Let's say I want to define my list of candidate stocks by filtering the list of NASDAQ New Highs recorded the previous trading day, is that possible? How?
Here is a notebook showing one possibility. It uses a pipeline with a custom factor to check each security for a new n-day high (default is 250 days or roughly 1 year but can be changed). The exchange is added to the pipeline using the exchange_id field from the morningstar.share_class_reference dataset. The results are then filtered by new_high is true AND exchange_ID is NAS.
Hope that helps.