Overall Statistics
Total Trades
1
Average Win
0%
Average Loss
0%
Compounding Annual Return
0%
Drawdown
0%
Expectancy
0
Net Profit
0%
Sharpe Ratio
0
Probabilistic Sharpe Ratio
0%
Loss Rate
0%
Win Rate
0%
Profit-Loss Ratio
0
Alpha
0
Beta
0
Annual Standard Deviation
0
Annual Variance
0
Information Ratio
0
Tracking Error
0
Treynor Ratio
0
Total Fees
$3.39
from datetime import timedelta
from io import StringIO
import pandas as pd
import sys

class ObjectStoreExampleAlgorithm(QCAlgorithm):
    '''This algorithm showcases some features of the IObjectStore feature.
    One use case is to make consecutive backtests run faster by caching the results of
    potentially time consuming operations. In this example, we save the results of a
    history call. This pattern can be equally applied to a machine learning model being
    trained and then saving the model weights in the object store.
    '''
    SPY_Close_ObjectStore_Key = "spy_close"
    SPY_Close_History = RollingWindow[IndicatorDataPoint](252)
    SPY_Close_EMA10_History = RollingWindow[IndicatorDataPoint](252)
    SPY_Close_EMA50_History = RollingWindow[IndicatorDataPoint](252)

    def Initialize(self):
        self.SetStartDate(2013, 10, 7)
        self.SetEndDate(2013, 10, 7)

        self.SPY = self.AddEquity("SPY", Resolution.Minute).Symbol

        self.SPY_Close = self.Identity(self.SPY, Resolution.Daily)
        self.SPY_Close_EMA10 = IndicatorExtensions.EMA(self.SPY_Close, 10)
        self.SPY_Close_EMA50 = IndicatorExtensions.EMA(self.SPY_Close, 50)

        # track last year of close and EMA10/EMA50
        self.SPY_Close.Updated += lambda _, args: self.SPY_Close_History.Add(args)
        self.SPY_Close_EMA10.Updated += lambda _, args: self.SPY_Close_EMA10_History.Add(args)
        self.SPY_Close_EMA50.Updated += lambda _, args: self.SPY_Close_EMA50_History.Add(args)

        if self.ObjectStore.ContainsKey(self.SPY_Close_ObjectStore_Key):
            # our object store has our historical data saved, read the data
            # and push it through the indicators to warm everything up
            values = self.ObjectStore.Read(self.SPY_Close_ObjectStore_Key)
            self.Debug(f'{self.SPY_Close_ObjectStore_Key} key exists in object store.')
            
            objectStoreSizes = {}
            for _, j in enumerate(self.ObjectStore.GetEnumerator()):
                key = str(j).split(",")[0][1:]
                size = sys.getsizeof(self.ObjectStore.Read(key))
                objectStoreSizes[key] = size
            #objectStoreKeys = [str(j).split(",")[0][1:] for _, j in enumerate(self.ObjectStore.GetEnumerator())]
            #self.Debug(f"Keys: {objectStoreKeys}")
            self.Debug(f"\nSizes:\n{objectStoreSizes}")

            history = pd.read_csv(StringIO(values), header=None, index_col=0, squeeze=True)
            history.index = pd.to_datetime(history.index)
            for time, close in history.iteritems():
                self.SPY_Close.Update(time, close)

        else:
            self.Debug(f'{self.SPY_Close_ObjectStore_Key} key does not exist in object store. Fetching history...')

            # if our object store doesn't have our data, fetch the history to initialize
            # we're pulling the last year's worth of SPY daily trade bars to fee into our indicators
            history = self.History(self.SPY, timedelta(365), Resolution.Daily).close.unstack(0).squeeze()

            for time, close in history.iteritems():
                self.SPY_Close.Update(time, close)

            # save our warm up data so next time we don't need to issue the history request
            self.ObjectStore.Save(self.SPY_Close_ObjectStore_Key,
                '\n'.join(reversed([f'{x.EndTime},{x.Value}' for x in self.SPY_Close_History])))

            # Can also use ObjectStore.SaveBytes(key, byte[])
            # and to read  ObjectStore.ReadBytes(key) => byte[]

            # we can also get a file path for our data. some ML libraries require model
            # weights to be loaded directly from a file path. The object store can provide
            # a file path for any key by: ObjectStore.GetFilePath(key) => string (file path)

    def OnData(self, slice):

        close = self.SPY_Close
        ema10 = self.SPY_Close_EMA10
        ema50 = self.SPY_Close_EMA50

        if ema10 > close and ema10 > ema50:
            self.SetHoldings(self.SPY, 1)

        elif ema10 < close and ema10 < ema50:
            self.SetHoldings(self.SPY, -1);

        elif ema10 < ema50 and self.Portfolio[self.SPY].IsLong:
            self.Liquidate(self.SPY);

        elif ema10 > ema50 and self.Portfolio[self.SPY].IsShort:
            self.Liquidate(self.SPY)