Overall Statistics
Total Trades
48
Average Win
0.72%
Average Loss
-0.97%
Compounding Annual Return
16.986%
Drawdown
42.200%
Expectancy
-0.215
Net Profit
1491.442%
Sharpe Ratio
0.788
Probabilistic Sharpe Ratio
16.314%
Loss Rate
55%
Win Rate
45%
Profit-Loss Ratio
0.74
Alpha
0.152
Beta
-0.061
Annual Standard Deviation
0.186
Annual Variance
0.034
Information Ratio
0.229
Tracking Error
0.255
Treynor Ratio
-2.386
Total Fees
$89.00
# https://quantpedia.com/Screener/Details/14
class MomentumEffectAlgorithm(QCAlgorithm):

    def Initialize(self):

        self.SetStartDate(2002, 7, 1)  # Set Start Date
        self.SetEndDate(2020, 7, 1)    # Set Start Date       
        self.SetCash(100000)           # Set Strategy Cash

        self.UniverseSettings.Resolution = Resolution.Daily

        self.mom = {}           # Dict of Momentum indicator keyed by Symbol
        self.lookback = 40     # Momentum indicator lookback period
        self.num_coarse = 100   # Number of symbols selected at Coarse Selection
        self.num_fine = 50      # Number of symbols selected at Fine Selection
        self.num_long = 10       # Number of symbols with open positions
        
        self.month = -1
        self.rebalance = False

        self.AddUniverse(self.CoarseSelectionFunction, self.FineSelectionFunction)


    def CoarseSelectionFunction(self, coarse):
        '''Drop securities which have no fundamental data or have too low prices.
        Select those with highest by dollar volume'''

        if self.Time.month < self.month:
            return Universe.Unchanged

        else:    
            self.rebalance = True
        
    
            selected = [x for x in coarse if x.HasFundamentalData and x.Price > 2]
    
            return [x.Symbol for x in selected]


    def FineSelectionFunction(self, fine):
        
        if self.Time.month < self.month:
            return Universe.Unchanged
        
        else:    
            self.month = self.Time.month +2 
    
            filteredfine = [f for f in fine if f.CompanyProfile.MarketCap > 1000000000]
    
            selected = sorted(filteredfine, key=lambda f: f.ValuationRatios.EarningYield + 
                        f.OperationRatios.ROIC.OneYear +
                        f.ValuationRatios.PBRatio +
                        f.OperationRatios.AVG5YrsROIC.FiveYears
                        ,reverse=True)
    
            return [x.Symbol for x in selected][:100]


    def OnData(self, data):

        # Update the indicator
        for symbol, mom in self.mom.items():
            mom.Update(self.Time, self.Securities[symbol].Close)

        if not self.rebalance:
            return

        # Selects the securities with highest momentum
        sorted_mom = sorted([k for k,v in self.mom.items() if v.IsReady],
            key=lambda x: self.mom[x].Current.Value, reverse=True)
        selected = sorted_mom[:self.num_long]

        # Liquidate securities that are not in the list
        for symbol, mom in self.mom.items():
            if symbol not in selected:
                self.Liquidate(symbol, 'Not selected')

        # Buy selected securities
        for symbol in selected:
            self.SetHoldings(symbol, 1/self.num_long)

        self.rebalance = False


    def OnSecuritiesChanged(self, changes):

        # Clean up data for removed securities and Liquidate
        for security in changes.RemovedSecurities:
            symbol = security.Symbol
            if self.mom.pop(symbol, None) is not None:
                self.Liquidate(symbol, 'Removed from universe')

        for security in changes.AddedSecurities:
            if security.Symbol not in self.mom:
                self.mom[security.Symbol] = Momentum(self.lookback)

        # Warm up the indicator with history price if it is not ready
        addedSymbols = [k for k,v in self.mom.items() if not v.IsReady]

        history = self.History(addedSymbols, 1 + self.lookback, Resolution.Daily)
        history = history.close.unstack(level=0)

        for symbol in addedSymbols:
            ticker = str(symbol)
            if ticker in history:
                for time, value in history[ticker].items():
                    item = IndicatorDataPoint(symbol, time, value)
                    self.mom[symbol].Update(item)