├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── NitroFE ├── __init__.py ├── encoding │ ├── __init__.py │ └── encoding_features.py └── time_based_features │ ├── __init__.py │ ├── indicator_features │ ├── _AbsolutePriceOscillator.py │ ├── _AroonOscillator.py │ ├── _AverageDirectionalMovementIndex.py │ ├── _AverageTrueRange.py │ ├── _BollingerBands.py │ ├── _ElasticSeriesWeightedAverage.py │ ├── _InverseFisherRelativeStrengthIndex.py │ ├── _KaufmanEfficiency.py │ ├── _KeltnerChannel.py │ ├── _MovingAverageConvergenceDivergence.py │ ├── _PercentageValueOscillator.py │ ├── _RelativeStrengthIndex.py │ ├── _SeriesWeightedAverage.py │ ├── _SeriesWeightedMovingFeature.py │ ├── _TripleExponentialMovingAverageOscillator.py │ ├── _TypicalValue.py │ ├── _ZeroLagExponentialMovingFeature.py │ └── __init__.py │ ├── moving_average_features │ ├── __init__.py │ └── moving_average_features.py │ └── weighted_window_features │ ├── __init__.py │ ├── weighted_rolling_window_engine.py │ ├── weighted_window_features.py │ └── weighted_windows.py ├── README.md ├── asserts ├── NitroFE-logos icon bw .jpeg ├── NitroFE-logos.jpeg └── rescaled_logo.jpeg ├── docs ├── Absolute Price Oscillator.md ├── Aroon Oscillator.md ├── Average Directional Movement Index.md ├── Average True Range.md ├── Bollinger Bands.md ├── Categorical Encoding.md ├── Encoding features.md ├── Inverse Fisher Relative Strength Index.md ├── Kaufman Efficiency.md ├── Keltner Channel.md ├── Moving Average Convergence Divergence.md ├── Percentage Value Oscillator.md ├── Relative Strength Index.md ├── Series Weighted Average.md ├── Series Weighted Moving Feature.md ├── Smoothed Encoding.md ├── Triple Exponential Moving Average Oscillator.md ├── Typical Value.md ├── Zero Lag Exponential Moving Feature.md ├── exponential moving average.md ├── fractal adaptive moving average.md ├── hull moving average.md ├── index.md ├── indicators features.md ├── kaufman adaptive moving average.md ├── moving average features.md ├── smoothed moving average.md ├── time based features.md ├── triple exponential moving average.md └── weighted window features.md ├── mkdocs.yml ├── requirements.txt ├── setup.cfg └── setup.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/LICENSE -------------------------------------------------------------------------------- /NitroFE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/NitroFE/__init__.py -------------------------------------------------------------------------------- /NitroFE/encoding/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/NitroFE/encoding/__init__.py -------------------------------------------------------------------------------- /NitroFE/encoding/encoding_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/NitroFE/encoding/encoding_features.py -------------------------------------------------------------------------------- /NitroFE/time_based_features/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NitroFE/time_based_features/indicator_features/_AbsolutePriceOscillator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/NitroFE/time_based_features/indicator_features/_AbsolutePriceOscillator.py -------------------------------------------------------------------------------- /NitroFE/time_based_features/indicator_features/_AroonOscillator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/NitroFE/time_based_features/indicator_features/_AroonOscillator.py -------------------------------------------------------------------------------- /NitroFE/time_based_features/indicator_features/_AverageDirectionalMovementIndex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/NitroFE/time_based_features/indicator_features/_AverageDirectionalMovementIndex.py -------------------------------------------------------------------------------- /NitroFE/time_based_features/indicator_features/_AverageTrueRange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/NitroFE/time_based_features/indicator_features/_AverageTrueRange.py -------------------------------------------------------------------------------- /NitroFE/time_based_features/indicator_features/_BollingerBands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/NitroFE/time_based_features/indicator_features/_BollingerBands.py -------------------------------------------------------------------------------- /NitroFE/time_based_features/indicator_features/_ElasticSeriesWeightedAverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/NitroFE/time_based_features/indicator_features/_ElasticSeriesWeightedAverage.py -------------------------------------------------------------------------------- /NitroFE/time_based_features/indicator_features/_InverseFisherRelativeStrengthIndex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/NitroFE/time_based_features/indicator_features/_InverseFisherRelativeStrengthIndex.py -------------------------------------------------------------------------------- /NitroFE/time_based_features/indicator_features/_KaufmanEfficiency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/NitroFE/time_based_features/indicator_features/_KaufmanEfficiency.py -------------------------------------------------------------------------------- /NitroFE/time_based_features/indicator_features/_KeltnerChannel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/NitroFE/time_based_features/indicator_features/_KeltnerChannel.py -------------------------------------------------------------------------------- /NitroFE/time_based_features/indicator_features/_MovingAverageConvergenceDivergence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/NitroFE/time_based_features/indicator_features/_MovingAverageConvergenceDivergence.py -------------------------------------------------------------------------------- /NitroFE/time_based_features/indicator_features/_PercentageValueOscillator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/NitroFE/time_based_features/indicator_features/_PercentageValueOscillator.py -------------------------------------------------------------------------------- /NitroFE/time_based_features/indicator_features/_RelativeStrengthIndex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/NitroFE/time_based_features/indicator_features/_RelativeStrengthIndex.py -------------------------------------------------------------------------------- /NitroFE/time_based_features/indicator_features/_SeriesWeightedAverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/NitroFE/time_based_features/indicator_features/_SeriesWeightedAverage.py -------------------------------------------------------------------------------- /NitroFE/time_based_features/indicator_features/_SeriesWeightedMovingFeature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/NitroFE/time_based_features/indicator_features/_SeriesWeightedMovingFeature.py -------------------------------------------------------------------------------- /NitroFE/time_based_features/indicator_features/_TripleExponentialMovingAverageOscillator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/NitroFE/time_based_features/indicator_features/_TripleExponentialMovingAverageOscillator.py -------------------------------------------------------------------------------- /NitroFE/time_based_features/indicator_features/_TypicalValue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/NitroFE/time_based_features/indicator_features/_TypicalValue.py -------------------------------------------------------------------------------- /NitroFE/time_based_features/indicator_features/_ZeroLagExponentialMovingFeature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/NitroFE/time_based_features/indicator_features/_ZeroLagExponentialMovingFeature.py -------------------------------------------------------------------------------- /NitroFE/time_based_features/indicator_features/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NitroFE/time_based_features/moving_average_features/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/NitroFE/time_based_features/moving_average_features/__init__.py -------------------------------------------------------------------------------- /NitroFE/time_based_features/moving_average_features/moving_average_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/NitroFE/time_based_features/moving_average_features/moving_average_features.py -------------------------------------------------------------------------------- /NitroFE/time_based_features/weighted_window_features/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /NitroFE/time_based_features/weighted_window_features/weighted_rolling_window_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/NitroFE/time_based_features/weighted_window_features/weighted_rolling_window_engine.py -------------------------------------------------------------------------------- /NitroFE/time_based_features/weighted_window_features/weighted_window_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/NitroFE/time_based_features/weighted_window_features/weighted_window_features.py -------------------------------------------------------------------------------- /NitroFE/time_based_features/weighted_window_features/weighted_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/NitroFE/time_based_features/weighted_window_features/weighted_windows.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/README.md -------------------------------------------------------------------------------- /asserts/NitroFE-logos icon bw .jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/asserts/NitroFE-logos icon bw .jpeg -------------------------------------------------------------------------------- /asserts/NitroFE-logos.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/asserts/NitroFE-logos.jpeg -------------------------------------------------------------------------------- /asserts/rescaled_logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/asserts/rescaled_logo.jpeg -------------------------------------------------------------------------------- /docs/Absolute Price Oscillator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/Absolute Price Oscillator.md -------------------------------------------------------------------------------- /docs/Aroon Oscillator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/Aroon Oscillator.md -------------------------------------------------------------------------------- /docs/Average Directional Movement Index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/Average Directional Movement Index.md -------------------------------------------------------------------------------- /docs/Average True Range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/Average True Range.md -------------------------------------------------------------------------------- /docs/Bollinger Bands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/Bollinger Bands.md -------------------------------------------------------------------------------- /docs/Categorical Encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/Categorical Encoding.md -------------------------------------------------------------------------------- /docs/Encoding features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/Encoding features.md -------------------------------------------------------------------------------- /docs/Inverse Fisher Relative Strength Index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/Inverse Fisher Relative Strength Index.md -------------------------------------------------------------------------------- /docs/Kaufman Efficiency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/Kaufman Efficiency.md -------------------------------------------------------------------------------- /docs/Keltner Channel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/Keltner Channel.md -------------------------------------------------------------------------------- /docs/Moving Average Convergence Divergence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/Moving Average Convergence Divergence.md -------------------------------------------------------------------------------- /docs/Percentage Value Oscillator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/Percentage Value Oscillator.md -------------------------------------------------------------------------------- /docs/Relative Strength Index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/Relative Strength Index.md -------------------------------------------------------------------------------- /docs/Series Weighted Average.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/Series Weighted Average.md -------------------------------------------------------------------------------- /docs/Series Weighted Moving Feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/Series Weighted Moving Feature.md -------------------------------------------------------------------------------- /docs/Smoothed Encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/Smoothed Encoding.md -------------------------------------------------------------------------------- /docs/Triple Exponential Moving Average Oscillator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/Triple Exponential Moving Average Oscillator.md -------------------------------------------------------------------------------- /docs/Typical Value.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/Typical Value.md -------------------------------------------------------------------------------- /docs/Zero Lag Exponential Moving Feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/Zero Lag Exponential Moving Feature.md -------------------------------------------------------------------------------- /docs/exponential moving average.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/exponential moving average.md -------------------------------------------------------------------------------- /docs/fractal adaptive moving average.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/fractal adaptive moving average.md -------------------------------------------------------------------------------- /docs/hull moving average.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/hull moving average.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/indicators features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/indicators features.md -------------------------------------------------------------------------------- /docs/kaufman adaptive moving average.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/kaufman adaptive moving average.md -------------------------------------------------------------------------------- /docs/moving average features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/moving average features.md -------------------------------------------------------------------------------- /docs/smoothed moving average.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/smoothed moving average.md -------------------------------------------------------------------------------- /docs/time based features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/time based features.md -------------------------------------------------------------------------------- /docs/triple exponential moving average.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/triple exponential moving average.md -------------------------------------------------------------------------------- /docs/weighted window features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/docs/weighted window features.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | numpy 3 | scipy 4 | plotly -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | # Inside of setup.cfg 2 | [metadata] 3 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITRO-AI/NitroFE/HEAD/setup.py --------------------------------------------------------------------------------