Hi,
I attempted to write something like this but it fails with error
NotImplementedError: couldn't find matching opcode for 'and_bbi'
Any ideas how I can do it please?
def make_pipeline():
profitable = mstar.valuation_ratios.ev_to_ebitda > 0
pipe = Pipeline(screen=Q1500US() & profitable)
sectors = Sector()
pipe.add(sectors, 'sector')
return pipe