mirror of
https://github.com/saymrwulf/zipline.git
synced 2026-05-16 21:10:11 +00:00
When adding fixtures for futures data, there will be a need for multiple calendars in the fixture ecosystem. e.g. a test that includes both equities and futures would need an overall calendar which encompasses both equities and futures; however, the test data for equities should still still be limited to the bounds set by the NYSE calendar. Make the fixtures that setup trading calendars and values dervied from the trading calendar (e.g. trading sessions) accept an iterable of calendars which need to be created, then populate those values into a dict keyed by the calendar name. Change `WithNYSETradingDays` to include sessions in the name, since we are moving to session as the name for the 'day' unit. Provide `trading_days` which is really "NYSE trading sessions` on `WithTradingSessions` for backwards compatibility.
311 lines
11 KiB
Python
311 lines
11 KiB
Python
from datetime import timedelta
|
|
|
|
import pandas as pd
|
|
from testfixtures import TempDirectory
|
|
|
|
from zipline.algorithm import TradingAlgorithm
|
|
from zipline.errors import TradingControlViolation
|
|
from zipline.testing import (
|
|
add_security_data,
|
|
create_data_portal,
|
|
security_list_copy,
|
|
tmp_trading_env,
|
|
tmp_dir,
|
|
)
|
|
from zipline.testing.fixtures import (
|
|
WithLogger,
|
|
WithTradingCalendars,
|
|
ZiplineTestCase,
|
|
)
|
|
from zipline.utils import factory
|
|
from zipline.utils.security_list import (
|
|
SecurityListSet,
|
|
load_from_directory,
|
|
)
|
|
|
|
LEVERAGED_ETFS = load_from_directory('leveraged_etf_list')
|
|
|
|
|
|
class RestrictedAlgoWithCheck(TradingAlgorithm):
|
|
def initialize(self, symbol):
|
|
self.rl = SecurityListSet(self.get_datetime, self.asset_finder)
|
|
self.set_do_not_order_list(self.rl.leveraged_etf_list)
|
|
self.order_count = 0
|
|
self.sid = self.symbol(symbol)
|
|
|
|
def handle_data(self, data):
|
|
if not self.order_count:
|
|
if self.sid not in \
|
|
self.rl.leveraged_etf_list:
|
|
self.order(self.sid, 100)
|
|
self.order_count += 1
|
|
|
|
|
|
class RestrictedAlgoWithoutCheck(TradingAlgorithm):
|
|
def initialize(self, symbol):
|
|
self.rl = SecurityListSet(self.get_datetime, self.asset_finder)
|
|
self.set_do_not_order_list(self.rl.leveraged_etf_list)
|
|
self.order_count = 0
|
|
self.sid = self.symbol(symbol)
|
|
|
|
def handle_data(self, data):
|
|
self.order(self.sid, 100)
|
|
self.order_count += 1
|
|
|
|
|
|
class IterateRLAlgo(TradingAlgorithm):
|
|
def initialize(self, symbol):
|
|
self.rl = SecurityListSet(self.get_datetime, self.asset_finder)
|
|
self.set_do_not_order_list(self.rl.leveraged_etf_list)
|
|
self.order_count = 0
|
|
self.sid = self.symbol(symbol)
|
|
self.found = False
|
|
|
|
def handle_data(self, data):
|
|
for stock in self.rl.leveraged_etf_list:
|
|
if stock == self.sid:
|
|
self.found = True
|
|
|
|
|
|
class SecurityListTestCase(WithLogger, WithTradingCalendars, ZiplineTestCase):
|
|
|
|
@classmethod
|
|
def init_class_fixtures(cls):
|
|
super(SecurityListTestCase, cls).init_class_fixtures()
|
|
# this is ugly, but we need to create two different
|
|
# TradingEnvironment/DataPortal pairs
|
|
|
|
cls.start = pd.Timestamp(list(LEVERAGED_ETFS.keys())[0])
|
|
end = pd.Timestamp('2015-02-17', tz='utc')
|
|
cls.extra_knowledge_date = pd.Timestamp('2015-01-27', tz='utc')
|
|
cls.trading_day_before_first_kd = pd.Timestamp('2015-01-23', tz='utc')
|
|
symbols = ['AAPL', 'GOOG', 'BZQ', 'URTY', 'JFT']
|
|
|
|
cls.env = cls.enter_class_context(tmp_trading_env(
|
|
equities=pd.DataFrame.from_records([{
|
|
'start_date': cls.start,
|
|
'end_date': end,
|
|
'symbol': symbol,
|
|
'exchange': "TEST",
|
|
} for symbol in symbols]),
|
|
))
|
|
|
|
cls.sim_params = factory.create_simulation_parameters(
|
|
start=cls.start,
|
|
num_days=4,
|
|
trading_calendar=cls.trading_calendar
|
|
)
|
|
|
|
cls.sim_params2 = sp2 = factory.create_simulation_parameters(
|
|
start=cls.trading_day_before_first_kd, num_days=4
|
|
)
|
|
|
|
cls.env2 = cls.enter_class_context(tmp_trading_env(
|
|
equities=pd.DataFrame.from_records([{
|
|
'start_date': sp2.start_session,
|
|
'end_date': sp2.end_session,
|
|
'symbol': symbol,
|
|
'exchange': "TEST",
|
|
} for symbol in symbols]),
|
|
))
|
|
|
|
cls.tempdir = cls.enter_class_context(tmp_dir())
|
|
cls.tempdir2 = cls.enter_class_context(tmp_dir())
|
|
|
|
cls.data_portal = create_data_portal(
|
|
asset_finder=cls.env.asset_finder,
|
|
tempdir=cls.tempdir,
|
|
sim_params=cls.sim_params,
|
|
sids=range(0, 5),
|
|
trading_calendar=cls.trading_calendar,
|
|
)
|
|
|
|
cls.data_portal2 = create_data_portal(
|
|
asset_finder=cls.env2.asset_finder,
|
|
tempdir=cls.tempdir2,
|
|
sim_params=cls.sim_params2,
|
|
sids=range(0, 5),
|
|
trading_calendar=cls.trading_calendar,
|
|
)
|
|
|
|
def test_iterate_over_restricted_list(self):
|
|
algo = IterateRLAlgo(symbol='BZQ', sim_params=self.sim_params,
|
|
env=self.env)
|
|
|
|
algo.run(self.data_portal)
|
|
self.assertTrue(algo.found)
|
|
|
|
def test_security_list(self):
|
|
# set the knowledge date to the first day of the
|
|
# leveraged etf knowledge date.
|
|
def get_datetime():
|
|
return self.start
|
|
|
|
rl = SecurityListSet(get_datetime, self.env.asset_finder)
|
|
# assert that a sample from the leveraged list are in restricted
|
|
should_exist = [
|
|
asset.sid for asset in
|
|
[self.env.asset_finder.lookup_symbol(
|
|
symbol,
|
|
as_of_date=self.extra_knowledge_date)
|
|
for symbol in ["BZQ", "URTY", "JFT"]]
|
|
]
|
|
for sid in should_exist:
|
|
self.assertIn(sid, rl.leveraged_etf_list)
|
|
|
|
# assert that a sample of allowed stocks are not in restricted
|
|
shouldnt_exist = [
|
|
asset.sid for asset in
|
|
[self.env.asset_finder.lookup_symbol(
|
|
symbol,
|
|
as_of_date=self.extra_knowledge_date)
|
|
for symbol in ["AAPL", "GOOG"]]
|
|
]
|
|
for sid in shouldnt_exist:
|
|
self.assertNotIn(sid, rl.leveraged_etf_list)
|
|
|
|
def test_security_add(self):
|
|
def get_datetime():
|
|
return pd.Timestamp("2015-01-27", tz='UTC')
|
|
with security_list_copy():
|
|
add_security_data(['AAPL', 'GOOG'], [])
|
|
rl = SecurityListSet(get_datetime, self.env.asset_finder)
|
|
should_exist = [
|
|
asset.sid for asset in
|
|
[self.env.asset_finder.lookup_symbol(
|
|
symbol,
|
|
as_of_date=self.extra_knowledge_date
|
|
) for symbol in ["AAPL", "GOOG", "BZQ", "URTY"]]
|
|
]
|
|
for sid in should_exist:
|
|
self.assertIn(sid, rl.leveraged_etf_list)
|
|
|
|
def test_security_add_delete(self):
|
|
with security_list_copy():
|
|
def get_datetime():
|
|
return pd.Timestamp("2015-01-27", tz='UTC')
|
|
rl = SecurityListSet(get_datetime, self.env.asset_finder)
|
|
self.assertNotIn("BZQ", rl.leveraged_etf_list)
|
|
self.assertNotIn("URTY", rl.leveraged_etf_list)
|
|
|
|
def test_algo_without_rl_violation_via_check(self):
|
|
algo = RestrictedAlgoWithCheck(symbol='BZQ',
|
|
sim_params=self.sim_params,
|
|
env=self.env)
|
|
algo.run(self.data_portal)
|
|
|
|
def test_algo_without_rl_violation(self):
|
|
algo = RestrictedAlgoWithoutCheck(symbol='AAPL',
|
|
sim_params=self.sim_params,
|
|
env=self.env)
|
|
algo.run(self.data_portal)
|
|
|
|
def test_algo_with_rl_violation(self):
|
|
algo = RestrictedAlgoWithoutCheck(symbol='BZQ',
|
|
sim_params=self.sim_params,
|
|
env=self.env)
|
|
with self.assertRaises(TradingControlViolation) as ctx:
|
|
algo.run(self.data_portal)
|
|
|
|
self.check_algo_exception(algo, ctx, 0)
|
|
|
|
# repeat with a symbol from a different lookup date
|
|
algo = RestrictedAlgoWithoutCheck(symbol='JFT',
|
|
sim_params=self.sim_params,
|
|
env=self.env)
|
|
with self.assertRaises(TradingControlViolation) as ctx:
|
|
algo.run(self.data_portal)
|
|
|
|
self.check_algo_exception(algo, ctx, 0)
|
|
|
|
def test_algo_with_rl_violation_after_knowledge_date(self):
|
|
sim_params = factory.create_simulation_parameters(
|
|
start=self.start + timedelta(days=7),
|
|
num_days=5
|
|
)
|
|
|
|
data_portal = create_data_portal(
|
|
self.env.asset_finder,
|
|
self.tempdir,
|
|
sim_params=sim_params,
|
|
sids=range(0, 5),
|
|
trading_calendar=self.trading_calendar,
|
|
)
|
|
|
|
algo = RestrictedAlgoWithoutCheck(symbol='BZQ',
|
|
sim_params=sim_params,
|
|
env=self.env)
|
|
with self.assertRaises(TradingControlViolation) as ctx:
|
|
algo.run(data_portal)
|
|
|
|
self.check_algo_exception(algo, ctx, 0)
|
|
|
|
def test_algo_with_rl_violation_cumulative(self):
|
|
"""
|
|
Add a new restriction, run a test long after both
|
|
knowledge dates, make sure stock from original restriction
|
|
set is still disallowed.
|
|
"""
|
|
sim_params = factory.create_simulation_parameters(
|
|
start=self.start + timedelta(days=7),
|
|
num_days=4
|
|
)
|
|
|
|
with security_list_copy():
|
|
add_security_data(['AAPL'], [])
|
|
algo = RestrictedAlgoWithoutCheck(
|
|
symbol='BZQ', sim_params=sim_params, env=self.env)
|
|
with self.assertRaises(TradingControlViolation) as ctx:
|
|
algo.run(self.data_portal)
|
|
|
|
self.check_algo_exception(algo, ctx, 0)
|
|
|
|
def test_algo_without_rl_violation_after_delete(self):
|
|
sim_params = factory.create_simulation_parameters(
|
|
start=self.extra_knowledge_date,
|
|
num_days=4,
|
|
)
|
|
equities = pd.DataFrame.from_records([{
|
|
'symbol': 'BZQ',
|
|
'start_date': sim_params.start_session,
|
|
'end_date': sim_params.end_session,
|
|
'exchange': "TEST",
|
|
}])
|
|
with TempDirectory() as new_tempdir, \
|
|
security_list_copy(), \
|
|
tmp_trading_env(equities=equities) as env:
|
|
# add a delete statement removing bzq
|
|
# write a new delete statement file to disk
|
|
add_security_data([], ['BZQ'])
|
|
|
|
data_portal = create_data_portal(
|
|
env.asset_finder,
|
|
new_tempdir,
|
|
sim_params,
|
|
range(0, 5),
|
|
trading_calendar=self.trading_calendar,
|
|
)
|
|
|
|
algo = RestrictedAlgoWithoutCheck(
|
|
symbol='BZQ', sim_params=sim_params, env=env
|
|
)
|
|
algo.run(data_portal)
|
|
|
|
def test_algo_with_rl_violation_after_add(self):
|
|
with security_list_copy():
|
|
add_security_data(['AAPL'], [])
|
|
|
|
algo = RestrictedAlgoWithoutCheck(symbol='AAPL',
|
|
sim_params=self.sim_params2,
|
|
env=self.env2)
|
|
with self.assertRaises(TradingControlViolation) as ctx:
|
|
algo.run(self.data_portal2)
|
|
|
|
self.check_algo_exception(algo, ctx, 2)
|
|
|
|
def check_algo_exception(self, algo, ctx, expected_order_count):
|
|
self.assertEqual(algo.order_count, expected_order_count)
|
|
exc = ctx.exception
|
|
self.assertEqual(TradingControlViolation, type(exc))
|
|
exc_msg = str(ctx.exception)
|
|
self.assertTrue("RestrictedListOrder" in exc_msg)
|