Overall Statistics
Total Orders
2
Average Win
0%
Average Loss
0%
Compounding Annual Return
0.281%
Drawdown
0.100%
Expectancy
0
Start Equity
500000
End Equity
500118
Net Profit
0.024%
Sharpe Ratio
-3.764
Sortino Ratio
-7.439
Probabilistic Sharpe Ratio
99.016%
Loss Rate
0%
Win Rate
0%
Profit-Loss Ratio
0
Alpha
-0.008
Beta
0.008
Annual Standard Deviation
0.001
Annual Variance
0
Information Ratio
-8.133
Tracking Error
0.058
Treynor Ratio
-0.523
Total Fees
$2.00
Estimated Strategy Capacity
$6500000.00
Lowest Capacity Asset
GOOCV WIJN1DTXIK4M|GOOCV VP83T1ZUHROL
Portfolio Turnover
0.02%
from AlgorithmImports import *

class BullCallSpreadStrategy(QCAlgorithm): 
    def initialize(self):
        self.set_start_date(2017, 2, 1)
        self.set_end_date(2017, 3, 5)
        self.set_cash(500000)

        option = self.add_option("GOOG", Resolution.MINUTE)
        self.symbol = option.symbol
        option.set_filter(self.universe_func)

    def universe_func(self, universe):
        return universe.include_weeklys().call_spread(30, 5)

    def on_data(self, slice: Slice) -> None:
        if self.portfolio.invested: return

        # Get the OptionChain
        chain = slice.option_chains.get(self.symbol, None)
        if not chain: return

        # Get the furthest expiration date of the contracts
        expiry = sorted(chain, key = lambda x: x.expiry, reverse=True)[0].expiry
        
        # Select the call Option contracts with the furthest expiry
        calls = [i for i in chain if i.expiry == expiry and i.right == OptionRight.CALL]
        if len(calls) == 0: return

        # Select the ITM and OTM contract strike prices from the remaining contracts
        call_strikes = sorted([x.strike for x in calls])
        itm_strike = call_strikes[0]
        otm_strike = call_strikes[-1]

        option_strategy = OptionStrategies.bull_call_spread(self.symbol, itm_strike, otm_strike, expiry)
        self.buy(option_strategy, 1)