mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-29 11:18:20 +08:00
30 lines
1.0 KiB
Python
30 lines
1.0 KiB
Python
"""
|
|
Datasets representing consensus estimates data.
|
|
"""
|
|
from zipline.utils.numpy_utils import datetime64ns_dtype, float64_dtype
|
|
|
|
from .dataset import Column, DataSet
|
|
|
|
|
|
class ConsensusEstimates(DataSet):
|
|
"""
|
|
Dataset representing consensus estimates data.
|
|
"""
|
|
previous_release_date = Column(datetime64ns_dtype)
|
|
next_release_date = Column(datetime64ns_dtype)
|
|
previous_standard_deviation = Column(float64_dtype)
|
|
next_standard_deviation = Column(float64_dtype)
|
|
previous_count = Column(float64_dtype)
|
|
next_count = Column(float64_dtype)
|
|
previous_fiscal_quarter = Column(float64_dtype)
|
|
next_fiscal_quarter = Column(float64_dtype)
|
|
previous_high = Column(float64_dtype)
|
|
next_high = Column(float64_dtype)
|
|
previous_mean = Column(float64_dtype)
|
|
next_mean = Column(float64_dtype)
|
|
previous_fiscal_year = Column(float64_dtype)
|
|
next_fiscal_year = Column(float64_dtype)
|
|
previous_low = Column(float64_dtype)
|
|
next_low = Column(float64_dtype)
|
|
previous_actual_value = Column(float64_dtype)
|