Overall Statistics |
Total Orders 2 Average Win 0% Average Loss 0% Compounding Annual Return 0.254% Drawdown 0.100% Expectancy 0 Start Equity 500000 End Equity 500058 Net Profit 0.012% Sharpe Ratio -2.301 Sortino Ratio -9.698 Probabilistic Sharpe Ratio 98.720% Loss Rate 0% Win Rate 0% Profit-Loss Ratio 0 Alpha -0.007 Beta 0.006 Annual Standard Deviation 0.001 Annual Variance 0 Information Ratio -15.042 Tracking Error 0.044 Treynor Ratio -0.486 Total Fees $2.00 Estimated Strategy Capacity $150000.00 Lowest Capacity Asset GOOCV WIJN1A64I33A|GOOCV VP83T1ZUHROL Portfolio Turnover 0.05% |
from AlgorithmImports import * class LongCallCalendarSpreadStrategy(QCAlgorithm): def initialize(self): self.set_start_date(2017, 2, 1) self.set_end_date(2017, 2, 19) 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_calendar_spread(0, 30, 60) def on_data(self, data): # avoid extra orders if self.portfolio.invested: return # Get the OptionChain of the self.symbol chain = data.option_chains.get(self.symbol, None) if not chain: return # get at-the-money strike atm_strike = sorted(chain, key=lambda x: abs(x.strike - chain.underlying.price))[0].strike # filter the call options from the contracts which is ATM in the option chain. calls = [i for i in chain if i.strike == atm_strike and i.right == OptionRight.CALL] if len(calls) == 0: return # sorted the optionchain by expiration date expiries = sorted([x.expiry for x in calls], key = lambda x: x) # select the farest expiry as far-leg expiry, and the nearest expiry as near-leg expiry near_expiry = expiries[0] far_expiry = expiries[-1] option_strategy = OptionStrategies.short_call_calendar_spread(self.symbol, atm_strike, near_expiry, far_expiry) # We open a position with 1 unit of the option strategy self.buy(option_strategy, 1)