mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-25 13:10:33 +08:00
zipline.modelling.* -> zipline.pipeline.* zipline.data.ffc.loaders -> zipline.pipeline.loaders tests/modelling -> tests/pipeline
13 lines
243 B
Python
13 lines
243 B
Python
from numpy import float64, uint32
|
|
|
|
from .dataset import Column, DataSet
|
|
|
|
|
|
class USEquityPricing(DataSet):
|
|
|
|
open = Column(float64)
|
|
high = Column(float64)
|
|
low = Column(float64)
|
|
close = Column(float64)
|
|
volume = Column(uint32)
|