Overall Statistics |
Total Orders 20 Average Win 114.76% Average Loss -6.16% Compounding Annual Return 61.952% Drawdown 39.500% Expectancy 6.847 Start Equity 100000.00 End Equity 690470.51 Net Profit 590.471% Sharpe Ratio 1.264 Sortino Ratio 1.158 Probabilistic Sharpe Ratio 55.584% Loss Rate 60% Win Rate 40% Profit-Loss Ratio 18.62 Alpha 0.465 Beta 0.174 Annual Standard Deviation 0.384 Annual Variance 0.148 Information Ratio 0.896 Tracking Error 0.409 Treynor Ratio 2.79 Total Fees $0.00 Estimated Strategy Capacity $11000000.00 Lowest Capacity Asset BTCUSD 2XR Portfolio Turnover 1.36% |
from AlgorithmImports import * class TechnicalIndicatorsAlgorithm(QCAlgorithm): def Initialize(self): self.SetStartDate(2018, 1, 1) # Set Start Date self.SetEndDate(2022, 1, 1) # Set End Date self.SetCash(100000) # Set Strategy Cash # Add the cryptocurrency pair self.symbol = self.AddCrypto("BTCUSD", Resolution.Daily).Symbol # Define indicators self.hammer = self.CandlestickPatterns.Hammer(self.symbol) self.hanging_man = self.CandlestickPatterns.HangingMan(self.symbol) self.doji = self.CandlestickPatterns.Doji(self.symbol) self.spinning_top = self.CandlestickPatterns.SpinningTop(self.symbol) self.engulfing = self.CandlestickPatterns.Engulfing(self.symbol) self.rsi = self.RSI(self.symbol, 14, MovingAverageType.Wilders, Resolution.Daily) # Moving averages self.sma10 = self.SMA(self.symbol, 10, Resolution.Daily) self.sma05 = self.SMA(self.symbol, 5, Resolution.Daily) self.ema20 = self.EMA(self.symbol, 20, Resolution.Daily) self.sma30 = self.SMA(self.symbol, 30, Resolution.Daily) self.sma50 = self.SMA(self.symbol, 50, Resolution.Daily) self.sma200 = self.SMA(self.symbol, 200, Resolution.Daily) self.sma600 = self.SMA(self.symbol, 600, Resolution.Daily) self.sma40 = self.SMA(self.symbol, 40, Resolution.Daily) self.sma120 = self.SMA(self.symbol, 120, Resolution.Daily) self.ema05 = self.EMA(self.symbol, 5, Resolution.Daily) self.ema10 = self.EMA(self.symbol, 10, Resolution.Daily) self.ema30 = self.EMA(self.symbol, 30, Resolution.Daily) self.ema65 = self.EMA(self.symbol, 65, Resolution.Daily) self.ema100 = self.EMA(self.symbol, 100, Resolution.Daily) self.ema150 = self.EMA(self.symbol, 150, Resolution.Daily) self.ema500 = self.EMA(self.symbol, 500, Resolution.Daily) self.ema600 = self.EMA(self.symbol, 600, Resolution.Daily) self.entry_price = None def OnData(self, data): if not data.ContainsKey(self.symbol): return price = data[self.symbol].Close # Buy condition if (self.rsi.Current.Value > 55) and (self.ema10.Current.Value > self.ema20.Current.Value > self.ema65.Current.Value > self.ema150.Current.Value): if not self.Portfolio[self.symbol].Invested: self.SetHoldings(self.symbol, 1) self.entry_price = price # Sell condition elif self.rsi.Current.Value < 40 and ((self.ema10.Current.Value < self.ema65.Current.Value) or (self.ema20.Current.Value < self.ema65.Current.Value)): if self.Portfolio[self.symbol].Invested: self.Liquidate(self.symbol) self.entry_price = None # Stop-loss condition if self.Portfolio[self.symbol].Invested and self.entry_price is not None: if price < self.entry_price * 0.95: self.Liquidate(self.symbol) self.entry_price = None def PlotIndicators(self): self.Plot("RSI", "RSI", self.rsi.Current.Value) self.Plot("SMA", "SMA10", self.sma10.Current.Value) self.Plot("SMA", "SMA20", self.sma20.Current.Value)