Hi,
I'm using this code:
class USCANonly(CustomFactor):
inputs = [morningstar.company_reference.country_id]
def compute(self, today, assets, out, ref):
out[:] = ref[-1]
but it's not working, I get instead:
TypeError: Don't know how to construct AdjustedArray on data of type .
Any help is welcome. Thanks!