Hi everyone,
I am trying to create my first algorithm, but I hit the wall and now am desperate for your help. My goal is to buy 10 and sell 10 stocks in the beginning of the year and then just wait until the end of the year, no rebalancing. What I'm trying to do:
- I've got my custom data set with carbon emissions data - variables 'scope1' , 'scope2' and 'scope3'
- I am creating a factor, which is a weighted average of the above three values and call it "carbon_score"
- I am filtering algorithm to only tradeable stocks
- Creating 10 longs and 10 shorts based on top10 and bottom10 values of carbon_score
There are no bugs seems like, it works both in the Research and the backtesting environments. However, it does not show the returns of the algo. And hence I can't see the performance. I am clearly missing something and it's probably something obvious, but I ran out of options..