Brett,
You're right. Usually when a stock gets delisted it remains in your portfolio (E.g. in the case of Gilette) even though you can no longer buy or sell that stock after it's end date. Unfortunately, as Lionel pointed out, you'll have to look up the acquisition details in order to find out what actually happened but if you wanted to go the route of simulating a cash acquisition one thing you could do is to sell all the shares a few days before it's end date:
def initialize(context):
#: Look up Gillette which expired in 2005
set_symbol_lookup_date('2003-01-01')
context.stock = symbol('G')
def handle_data(context, data):
#: Only order shares if it's greater than 2 days before expiration date
if (context.stock.end_date - get_datetime()).days > 2:
log.info("ordering")
order_target_percent(context.stock, 1)
#: Sell all shares just before expiration date to simulate a cash buyout
else:
log.info("selling")
order_target_percent(context.stock, 0)
And I wasn't sure if you needed help with removing all the stocks that end before the backtest ends but here's a code snippet just in case you needed it:
from datetime import datetime
from pytz import timezone
def initialize(context):
set_universe(universe.DollarVolumeUniverse(99.0, 100.0))
#: Set the timezone here and identify the custom end date you'd want to be using
#: datetime(year, month, day)
tz = timezone("US/Eastern")
context.custom_end_date = tz.localize(datetime(2007, 10, 26, 0, 0, 0))
def handle_data(context, data):
#: Remove all stocks that aren't valid
to_remove = []
#: Add all stocks to be removed into a list
for stock in data:
if stock.end_date < context.custom_end_date:
log.info("Removing %s with end_date %s" % (stock, stock.end_date))
to_remove.append(stock)
#: Go through list and delete stocks
for i in to_remove:
del data[i]
"""
Perform all valid operations here after the stocks have been removed
"""
#: Do order operations here
Seong
Disclaimer
The material on this website is provided for informational purposes only and does not constitute an offer to sell, a solicitation to buy, or a recommendation or endorsement for any security or strategy, nor does it constitute an offer to provide investment advisory services by Quantopian. In addition, the material offers no opinion with respect to the suitability of any security or specific investment. No information contained herein should be regarded as a suggestion to engage in or refrain from any investment-related course of action as none of Quantopian nor any of its affiliates is undertaking to provide investment advice, act as an adviser to any plan or entity subject to the Employee Retirement Income Security Act of 1974, as amended, individual retirement account or individual retirement annuity, or give advice in a fiduciary capacity with respect to the materials presented herein. If you are an individual retirement or other investor, contact your financial advisor or other fiduciary unrelated to Quantopian about whether any given investment idea, strategy, product or service described herein may be appropriate for your circumstances. All investments involve risk, including loss of principal. Quantopian makes no guarantees as to the accuracy or completeness of the views expressed in the website. The views are subject to change, and may have become unreliable for various reasons, including changes in market conditions or economic circumstances.