Files
catalyst/zipline/modelling/factor/__init__.py
T
Scott Sanderson 5730de25a4 DEV: Kill compute_from_{arrays,windows}.
All terms just implement `_compute` now. (We reserve `compute` for the
public API of `CustomFactor`.)

Also removed `TestingTermMixin` and its subclasses in favor of just
using `CustomFactor.`
2015-09-16 01:28:15 -04:00

24 lines
355 B
Python

from .factor import (
Factor,
CustomFactor,
)
from .latest import Latest
from .technical import (
MaxDrawdown,
RSI,
SimpleMovingAverage,
VWAP,
WeightedAverageValue,
)
__all__ = [
'CustomFactor',
'Factor',
'Latest',
'MaxDrawdown',
'RSI',
'SimpleMovingAverage',
'VWAP',
'WeightedAverageValue',
]