ad6046fea5
Regression Tests / build (push) Has been cancelled
Benchmarks / build (push) Has been cancelled
Build & Test Lean / build (push) Has been cancelled
Research Regression Tests / build (push) Has been cancelled
Python Virtual Environments / build (push) Has been cancelled
* Add ShortButterflyCall and ShortButterflyPut strategies helper factory methods * Reduce duplication by adding the base OptionStrategyFactoryMethodsBaseAlgorithm algorithm class * Housekeeping
77 lines
3.9 KiB
Python
77 lines
3.9 KiB
Python
# QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
|
|
# Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import itertools
|
|
from AlgorithmImports import *
|
|
|
|
from OptionStrategyFactoryMethodsBaseAlgorithm import *
|
|
|
|
### <summary>
|
|
### This algorithm demonstrate how to use OptionStrategies helper class to batch send orders for common strategies.
|
|
### In this case, the algorithm tests the Strangle and Short Strangle strategies.
|
|
### </summary>
|
|
class LongAndShortStrangleStrategiesAlgorithm(OptionStrategyFactoryMethodsBaseAlgorithm):
|
|
|
|
def ExpectedOrdersCount(self) -> int:
|
|
return 4
|
|
|
|
def TradeStrategy(self, chain: OptionChain, option_symbol: Symbol):
|
|
contracts = sorted(sorted(chain, key=lambda x: abs(chain.Underlying.Price - x.Strike)),
|
|
key=lambda x: x.Expiry, reverse=True)
|
|
groupedContracts = (list(group) for _, group in itertools.groupby(contracts, lambda x: x.Expiry))
|
|
|
|
callContract = None
|
|
putContract = None
|
|
for group in groupedContracts:
|
|
callContracts = sorted((contract for contract in group if contract.Right == OptionRight.Call),
|
|
key=lambda x: x.Strike, reverse=True)
|
|
putContracts = sorted((contract for contract in group if contract.Right == OptionRight.Put),
|
|
key=lambda x: x.Strike)
|
|
|
|
if len(callContracts) > 0 and len(putContracts) > 0 and callContracts[0].Strike > putContracts[0].Strike:
|
|
callContract = callContracts[0]
|
|
putContract = putContracts[0]
|
|
break
|
|
|
|
if callContract is not None and putContract is not None:
|
|
self._strangle = OptionStrategies.Strangle(option_symbol, callContract.Strike, putContract.Strike, callContract.Expiry)
|
|
self._short_strangle = OptionStrategies.ShortStrangle(option_symbol, callContract.Strike, putContract.Strike,
|
|
callContract.Expiry)
|
|
self.Buy(self._strangle, 2)
|
|
|
|
def AssertStrategyPositionGroup(self, positionGroup: IPositionGroup, option_symbol: Symbol):
|
|
positions = list(positionGroup.Positions)
|
|
if len(positions) != 2:
|
|
raise Exception(f"Expected position group to have 2 positions. Actual: {len(positions)}")
|
|
|
|
callPosition = next((position for position in positions if position.Symbol.ID.OptionRight == OptionRight.Call), None)
|
|
if callPosition is None:
|
|
raise Exception("Expected position group to have a call position")
|
|
|
|
putPosition = next((position for position in positions if position.Symbol.ID.OptionRight == OptionRight.Put), None)
|
|
if putPosition is None:
|
|
raise Exception("Expected position group to have a put position")
|
|
|
|
expectedCallPositionQuantity = 2
|
|
expectedPutPositionQuantity = 2
|
|
|
|
if callPosition.Quantity != expectedCallPositionQuantity:
|
|
raise Exception(f"Expected call position quantity to be {expectedCallPositionQuantity}. Actual: {callPosition.Quantity}")
|
|
|
|
if putPosition.Quantity != expectedPutPositionQuantity:
|
|
raise Exception(f"Expected put position quantity to be {expectedPutPositionQuantity}. Actual: {putPosition.Quantity}")
|
|
|
|
def LiquidateStrategy(self):
|
|
# We should be able to close the position using the inverse strategy (a short strangle)
|
|
self.Buy(self._short_strangle, 2)
|