Skip to content

Commit

Permalink
MAINT: Delegate to math_utils to leave bottleneck as optional
Browse files Browse the repository at this point in the history
  • Loading branch information
richafrank committed Feb 3, 2016
1 parent d986f5b commit 04d5b21
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions zipline/pipeline/factors/technical.py
Expand Up @@ -2,12 +2,6 @@
Technical Analysis Factors
--------------------------
"""
from bottleneck import (
nanargmax,
nanmax,
nanmean,
nansum,
)
from numbers import Number
from numpy import (
abs,
Expand All @@ -31,6 +25,12 @@
from zipline.pipeline.mixins import SingleInputMixin
from zipline.utils.control_flow import ignore_nanwarnings
from zipline.utils.input_validation import expect_types
from zipline.utils.math_utils import (
nanargmax,
nanmax,
nanmean,
nansum,
)
from .factor import CustomFactor


Expand Down

0 comments on commit 04d5b21

Please sign in to comment.