Overall Statistics
Total Orders
25
Average Win
106.27%
Average Loss
-6.95%
Compounding Annual Return
69.988%
Drawdown
39.600%
Expectancy
5.786
Start Equity
100000.00
End Equity
1425143.81
Net Profit
1325.144%
Sharpe Ratio
1.403
Sortino Ratio
1.376
Probabilistic Sharpe Ratio
67.664%
Loss Rate
58%
Win Rate
42%
Profit-Loss Ratio
15.29
Alpha
0.509
Beta
0.151
Annual Standard Deviation
0.374
Annual Variance
0.14
Information Ratio
1.056
Tracking Error
0.401
Treynor Ratio
3.471
Total Fees
$0.00
Estimated Strategy Capacity
$6500000.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)