├── .gitignore ├── LICENSE ├── README.md ├── quantiacsToolbox ├── __init__.py ├── quantiacsToolbox.py └── version.py ├── sampleSystems ├── Bollinger_bands_tutorial.ipynb ├── Carstens_Illustration3.py ├── Carstens_Illustration7.py ├── LinearRegression.py ├── TradingSystemTemplate.py ├── __init__.py ├── bollingerBands.py ├── heikinAshi.py ├── linear_regression_tutorial.ipynb ├── meanReversion.py ├── rsiExample.py ├── simpleKeras.py ├── simpleTS.py ├── svm.py ├── svmMomentum.py ├── svm_momentum_tutorial.ipynb ├── svm_tutorial.ipynb └── trendFollowing.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantiacs-legacy/quantiacs-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantiacs-legacy/quantiacs-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantiacs-legacy/quantiacs-python/HEAD/README.md -------------------------------------------------------------------------------- /quantiacsToolbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantiacs-legacy/quantiacs-python/HEAD/quantiacsToolbox/__init__.py -------------------------------------------------------------------------------- /quantiacsToolbox/quantiacsToolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantiacs-legacy/quantiacs-python/HEAD/quantiacsToolbox/quantiacsToolbox.py -------------------------------------------------------------------------------- /quantiacsToolbox/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.0.1' 2 | -------------------------------------------------------------------------------- /sampleSystems/Bollinger_bands_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantiacs-legacy/quantiacs-python/HEAD/sampleSystems/Bollinger_bands_tutorial.ipynb -------------------------------------------------------------------------------- /sampleSystems/Carstens_Illustration3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantiacs-legacy/quantiacs-python/HEAD/sampleSystems/Carstens_Illustration3.py -------------------------------------------------------------------------------- /sampleSystems/Carstens_Illustration7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantiacs-legacy/quantiacs-python/HEAD/sampleSystems/Carstens_Illustration7.py -------------------------------------------------------------------------------- /sampleSystems/LinearRegression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantiacs-legacy/quantiacs-python/HEAD/sampleSystems/LinearRegression.py -------------------------------------------------------------------------------- /sampleSystems/TradingSystemTemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantiacs-legacy/quantiacs-python/HEAD/sampleSystems/TradingSystemTemplate.py -------------------------------------------------------------------------------- /sampleSystems/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantiacs-legacy/quantiacs-python/HEAD/sampleSystems/__init__.py -------------------------------------------------------------------------------- /sampleSystems/bollingerBands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantiacs-legacy/quantiacs-python/HEAD/sampleSystems/bollingerBands.py -------------------------------------------------------------------------------- /sampleSystems/heikinAshi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantiacs-legacy/quantiacs-python/HEAD/sampleSystems/heikinAshi.py -------------------------------------------------------------------------------- /sampleSystems/linear_regression_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantiacs-legacy/quantiacs-python/HEAD/sampleSystems/linear_regression_tutorial.ipynb -------------------------------------------------------------------------------- /sampleSystems/meanReversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantiacs-legacy/quantiacs-python/HEAD/sampleSystems/meanReversion.py -------------------------------------------------------------------------------- /sampleSystems/rsiExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantiacs-legacy/quantiacs-python/HEAD/sampleSystems/rsiExample.py -------------------------------------------------------------------------------- /sampleSystems/simpleKeras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantiacs-legacy/quantiacs-python/HEAD/sampleSystems/simpleKeras.py -------------------------------------------------------------------------------- /sampleSystems/simpleTS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantiacs-legacy/quantiacs-python/HEAD/sampleSystems/simpleTS.py -------------------------------------------------------------------------------- /sampleSystems/svm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantiacs-legacy/quantiacs-python/HEAD/sampleSystems/svm.py -------------------------------------------------------------------------------- /sampleSystems/svmMomentum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantiacs-legacy/quantiacs-python/HEAD/sampleSystems/svmMomentum.py -------------------------------------------------------------------------------- /sampleSystems/svm_momentum_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantiacs-legacy/quantiacs-python/HEAD/sampleSystems/svm_momentum_tutorial.ipynb -------------------------------------------------------------------------------- /sampleSystems/svm_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantiacs-legacy/quantiacs-python/HEAD/sampleSystems/svm_tutorial.ipynb -------------------------------------------------------------------------------- /sampleSystems/trendFollowing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantiacs-legacy/quantiacs-python/HEAD/sampleSystems/trendFollowing.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantiacs-legacy/quantiacs-python/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantiacs-legacy/quantiacs-python/HEAD/setup.py --------------------------------------------------------------------------------