I can filter for stocks based in a certain sector by doing this:
.filter(fundamentals.asset_classification.morningstar_sector_code == 311)
This filters stocks that are in the technology sector.
How would I go about filtering for more than one sector? i.e. how would I get all stocks in the technology sector and the industrials sector (sector_code == 310)?
I guess it would be something along the lines of:
.filter(fundamentals.asset_classification.morningstar_sector_code == 311 and fundamentals.asset_classification.morningstar_sector_code == 310)
thanks any help appreciated.