2022-01-26 23:22:43 +01:00
|
|
|
from .event_filters.nofilter import NoEventFilter
|
|
|
|
|
from .event_filters.cusum import CUSUMVolatilityEventFilter, CUSUMFixedEventFilter
|
|
|
|
|
|
|
|
|
|
eventfilters_map = dict(
|
2022-03-15 14:43:16 +01:00
|
|
|
none=NoEventFilter,
|
|
|
|
|
cusum_vol=CUSUMVolatilityEventFilter,
|
|
|
|
|
cusum_fixed=CUSUMFixedEventFilter,
|
2022-02-17 19:22:17 +01:00
|
|
|
)
|