Trading and Orders
Liquidating Positions
Introduction
The liquidate
method lets you liquidate individual assets or your entire portfolio. The method creates market orders to close positions and returns the tickets of the liquidation orders. If you have pending open orders for the security when you call liquidate
, LEAN tries to cancel them. The liquidate
method works for all asset classes, except Crypto. To liquidate Crypto positions, see Crypto Trades.
Liquidate Individual Positions
To liquidate your holdings in an individual security, call the liquidate
method and provide a ticker or Symbol
.
# Liquidate all IBM in your portfolio order_tickets = self.liquidate("IBM")
You can pass an order tag and properties to the liquidate
method.
order_properties = OrderProperties() order_properties.time_in_force = TimeInForce.DAY order_tickets = self.liquidate("AAPL", tag="Liquidated", order_properties=order_properties)
Liquidate All Positions
To liquidate all of the positions in your portfolio, call the liquidate
method without any ticker of Symbol
arguments.
// Liquidate your entire portfolio order_tickets = self.liquidate()
You can pass an order tag and properties to the liquidate
method.
order_properties = OrderProperties() order_properties.time_in_force = TimeInForce.DAY order_tickets = self.liquidate(tag="Liquidated", order_properties=order_properties)
Place Asynchronous Liquidations
When you trade a large portfolio of assets, you may want to send orders in batches and not wait for the response of each one. To send asynchronous liquidation orders, set the asynchronous
argument to True
.
order_tickets = self.liquidate(asynchronous=True, order_properties=order_properties)
Enable and Disable Liquidations
By default, the liquidate
method is functional. To enable and disable it, set the liquidate_enabled
algorithm setting.
# Disable liquidations self.settings.liquidate_enabled = False # Enable liquidations self.settings.liquidate_enabled = True
Market Closed Considerations
If you liquidate your positions when the market is closed, LEAN converts the orders into market on open orders. If your brokerage doesn't support market on open orders, the order is invalid.
Examples
The following examples demonstrate some common practices for liquidating positions.
Example 1: Liquidate Universe Removal
The following algorithm holds equal positions for the top 10 liquid universe to follow their hype while updating weekly. When a stock is removed from the universe, we liquidate the position in the on_securities_changed
method.
class LiquidatingPositionsAlgorithm(QCAlgorithm): def initialize(self) -> None: self.set_start_date(2023, 1, 1) self.set_end_date(2023, 8, 1) # Update the universe weekly to allow time to capitalize on the hype. self.universe_settings.schedule.on(self.date_rules.week_start()) # Filter for the 10 most popular stocks to invest the hype. self._universe = self.add_universe(self.universe.dollar_volume.top(10)) # Set a schedule event to rebalance weekly. self.schedule.on( self.date_rules.week_start(), self.time_rules.at(9, 31), self.rebalance ) def rebalance(self) -> None: # Evenly invest in the universe members to dissipate the capital risk equally. count = len(self._universe.members) targets = [PortfolioTarget(x.key, 1 / count) for x in self._universe.members] self.set_holdings(targets) def on_securities_changed(self, changes: SecurityChanges) -> None: # Liquidate the ones leaving the universe since they are not the most popular. # Note that the liquidation will be market-on-open orders due to the time of securities removal. for removed in changes.removed_securities: self.liquidate(removed.symbol)
Example 2: Liquidate Existing Positions
The example below trades the same strategy as the previous one. Still, instead of liquidating the positions when the stocks leave the universe, we liquidate the position using the liquidate_existing_holdings
argument in the set_holdings
. Note that the time of the liquidation will be slightly delayed due to the time of the scheduled event.
class LiquidatingPositionsAlgorithm(QCAlgorithm): def initialize(self) -> None: self.set_start_date(2023, 1, 1) self.set_end_date(2023, 8, 1) # Update the universe weekly to allow time to capitalize on the hype. self.universe_settings.schedule.on(self.date_rules.week_start()) # Filter for the 10 most popular stocks to invest the hype. self._universe = self.add_universe(self.universe.dollar_volume.top(10)) # Set a scheduled event to rebalance weekly. self.schedule.on( self.date_rules.week_start(), self.time_rules.at(9, 31), self.rebalance ) def rebalance(self) -> None: # Evenly invest in the universe members to dissipate the capital risk equally. count = len(self._universe.members) targets = [PortfolioTarget(x.key, 1 / count) for x in self._universe.members] # We can use `liquidate_existing_holdings` arguments to liquidate the ones not in the universe anymore. self.set_holdings(targets, liquidate_existing_holdings=True)
Example 3: Liquidate Upon Assignment
The following algorithm sells SPY ATM puts weekly to earn the premium when SPY price is rising. In the case where the price of SPY drops and the put is being assigned, we liquidate the SPY position in the on_assignment_order_event
.
class LiquidatingPositionsAlgorithm(QCAlgorithm): def initialize(self) -> None: self.set_start_date(2023, 1, 1) self.set_end_date(2023, 8, 1) # Seed the price with the last known price to ensure the underlying price data is available on initial option contract filtering. self.set_security_initializer(BrokerageModelSecurityInitializer(self.brokerage_model, FuncSecuritySeeder(self.get_last_known_prices))) # Request SPY data for option selection using its price. # Use raw data normalization mode since we need to compare the SPY price with the strike price. self.spy = self.add_equity("SPY", data_normalization_mode=DataNormalizationMode.RAW).symbol # Set a scheduled event to rebalance weekly. self.schedule.on( self.date_rules.week_start(), self.time_rules.at(9, 31), self.rebalance ) def rebalance(self) -> None: # Select the 1-week ATM put SPY option to short. option_chain = self.option_chain(self.spy) expiry = max(x.expiry for x in option_chain if x.expiry < self.time + timedelta(6)) atm_put = sorted([x for x in option_chain if x.expiry == expiry and x.right == OptionRight.PUT], key=lambda x: abs(x.strike - self.securities[self.spy].price))[0] atm_put_symbol = self.add_option_contract(atm_put).symbol # Sell the ATM put option to earn the premium. self.sell(atm_put_symbol, 2) def on_assignment_order_event(self, assignment_event: OrderEvent) -> None: # Liquidate any assigned positions of SPY since we only earn the premium. self.liquidate(self.spy)