-
Notifications
You must be signed in to change notification settings - Fork 223
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #117 from freqtrade/reorg_indicators
Reorg indicators
- Loading branch information
Showing
9 changed files
with
449 additions
and
266 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# flake8: noqa: F401 | ||
from .cycle_indicators import * | ||
from .indicators import * | ||
from .momentum import * | ||
from .overlap_studies import * | ||
from .price_transform import * | ||
from .volatility import * | ||
from .volume_indicators import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
""" | ||
Cycle indicators | ||
""" | ||
|
||
######################################## | ||
# | ||
# Cycle Indicator Functions | ||
# | ||
|
||
# HT_DCPERIOD Hilbert Transform - Dominant Cycle Period | ||
# HT_DCPHASE Hilbert Transform - Dominant Cycle Phase | ||
# HT_PHASOR Hilbert Transform - Phasor Components | ||
# HT_SINE Hilbert Transform - SineWave | ||
# HT_TRENDMODE Hilbert Transform - Trend vs Cycle Mode |
Oops, something went wrong.