mirror of
https://github.com/wassname/catalyst.git
synced 2026-06-29 03:02:36 +08:00
59c8e371a2
Adds the data bundle concept which makes it easy for users to register loading functions to build out minute and daily data along with an assets db and adjustments db. By default we have provided a `quandl` bundle which pulls from the public domain WIKI dataset. Users may register new bundles by decorating an ingest function with `zipline.data.bundles.register(<name>)`. This also provides a `yahoo_equities` function for creating an ingestion function that will load a static set of assets from yahoo. The cli is now structured as a couple of subcommands and has been changed to `python -m zipline`. The old behavior of `run_algo.py` has been moved to the `run` subcommand. This is almost entirely the same except that it now takes the name of the data bundle to use, defaulting to `quandl`. The next subcommand is `ingest` which takes the name of a data bundle to ingest. This will run the loading machinery and write the data to a specified location that `run` can find. There is also a `clean` subcommand which deletes the data that was written with `ingest`. Extensions have also been added to zipline. This is an experimental feature where users can provide an extra set of python files to run at the start of the process. These can be used to configure aspects of zipline. Right now the only thing that is supported in an extension file is the registration of a new data bundle.
119 lines
3.1 KiB
Python
119 lines
3.1 KiB
Python
import click
|
|
import pandas as pd
|
|
|
|
from .context_tricks import CallbackManager
|
|
|
|
|
|
def maybe_show_progress(it, show_progress, **kwargs):
|
|
"""Optionally show a progress bar for the given iterator.
|
|
|
|
Parameters
|
|
----------
|
|
it : iterable
|
|
The underlying iterator.
|
|
show_progress : bool
|
|
Should progress be shown.
|
|
**kwargs
|
|
Forwarded to the click progress bar.
|
|
|
|
Returns
|
|
-------
|
|
itercontext : context manager
|
|
A context manager whose enter is the actual iterator to use.
|
|
|
|
Examples
|
|
--------
|
|
.. code-block:: python
|
|
|
|
with maybe_show_progress([1, 2, 3], True) as ns:
|
|
for n in ns:
|
|
...
|
|
"""
|
|
if show_progress:
|
|
return click.progressbar(it, **kwargs)
|
|
|
|
# context manager that just return `it` when we enter it
|
|
return CallbackManager(lambda it=it: it)
|
|
|
|
|
|
class _DatetimeParam(click.ParamType):
|
|
def __init__(self, tz=None):
|
|
self.tz = tz
|
|
|
|
def parser(self, value):
|
|
return pd.Timestamp(value, tz=self.tz)
|
|
|
|
@property
|
|
def name(self):
|
|
return type(self).__name__.upper()
|
|
|
|
def convert(self, value, param, ctx):
|
|
try:
|
|
return self.parser(value)
|
|
except ValueError:
|
|
self.fail(
|
|
'%s is not a valid %s' % (value, self.name.lower()),
|
|
param,
|
|
ctx,
|
|
)
|
|
|
|
|
|
class Timestamp(_DatetimeParam):
|
|
"""A click parameter that parses the value into pandas.Timestamp objects.
|
|
|
|
Parameters
|
|
----------
|
|
tz : timezone-coercable, optional
|
|
The timezone to parse the string as.
|
|
By default the timezone will be infered from the string or naiive.
|
|
"""
|
|
|
|
|
|
class Date(_DatetimeParam):
|
|
"""A click parameter that parses the value into datetime.date objects.
|
|
|
|
Parameters
|
|
----------
|
|
tz : timezone-coercable, optional
|
|
The timezone to parse the string as.
|
|
By default the timezone will be infered from the string or naiive.
|
|
as_timestamp : bool, optional
|
|
If True, return the value as a pd.Timestamp object normalized to
|
|
midnight.
|
|
"""
|
|
def __init__(self, tz=None, as_timestamp=False):
|
|
super(Date, self).__init__(tz=tz)
|
|
self.as_timestamp = as_timestamp
|
|
|
|
def parser(self, value):
|
|
ts = super(Date, self).parser(value)
|
|
return ts.normalize() if self.as_timestamp else ts.date()
|
|
|
|
|
|
class Time(_DatetimeParam):
|
|
"""A click parameter that parses the value into timetime.time objects.
|
|
|
|
Parameters
|
|
----------
|
|
tz : timezone-coercable, optional
|
|
The timezone to parse the string as.
|
|
By default the timezone will be infered from the string or naiive.
|
|
"""
|
|
def parser(self, value):
|
|
return super(Time, self).parser(value).time()
|
|
|
|
|
|
class Timedelta(_DatetimeParam):
|
|
"""A click parameter that parses values into pd.Timedelta objects.
|
|
|
|
Parameters
|
|
----------
|
|
unit : {'D', 'h', 'm', 's', 'ms', 'us', 'ns'}, optional
|
|
Denotes the unit of the input if the input is an integer.
|
|
"""
|
|
def __init__(self, unit='ns'):
|
|
self.unit = unit
|
|
|
|
def parser(self, value):
|
|
return pd.Timedelta(value, unit=self.unit)
|