| Overall Statistics |
|
Total Trades 0 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 -2.449 Tracking Error 0.213 Treynor Ratio 0 Total Fees $0.00 |
class algo(QCAlgorithm):
def Initialize(self):
self.SetStartDate(2020, 4, 20)
self.SetCash(10000)
self.window = RollingWindow[TradeBar](3)
self.btcusd = self.AddCrypto("BTCUSD", Resolution.Daily, Market.GDAX).Symbol
self.lowWindow = RollingWindow[float](3)
self.highWindow = RollingWindow[float](3)
self.Schedule.On(self.DateRules.On(2020, 6, 23), self.TimeRules.At(13, 0), self.getHighLow)
def OnData(self, data):
self.lowWindow.Add(data[self.btcusd].Low)
self.highWindow.Add(data[self.btcusd].High)
def getHighLow(self):
if self.highWindow.IsReady and self.lowWindow.IsReady:
self.Log("Today High: " + str(self.highWindow[0]))
self.Log("Today Low: " + str(self.lowWindow[0]))
self.Log("Yesterday High: " + str(self.highWindow[1]))
self.Log("Yesterday Low: " + str(self.lowWindow[1]))
self.Log("Oldest Day (two days ago) High: " + str(self.highWindow[2]))
self.Log("Oldest Day (two days ago) Low: " + str(self.lowWindow[2]))