Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
Pipeline Filter Help

I would like to create a filter where it filters a list of stocks for their RSI and I would like to screen it so the stock with the lowest RSI gets chosen.

How would I do that if its possible?

1 response

Maybe something like this. Use it as a filter/screen/mask in your pipeline definition. Make sure that 'my_stocks' is a previously defined filter that contains the stocks you want to choose from.

my_filter = RSI(mask=my_stocks).bottom(1)