├── .DS_Store ├── .idea ├── Intelligent BackTesing System.iml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── Makefile ├── README.md ├── backtesting ├── .DS_Store ├── __pycache__ │ ├── backtest.cpython-36.pyc │ ├── data.cpython-36.pyc │ ├── event.cpython-36.pyc │ ├── excaution.cpython-36.pyc │ ├── performance.cpython-36.pyc │ ├── portfolio.cpython-36.pyc │ └── strategy.cpython-36.pyc ├── backtest.py ├── data.py ├── event.py ├── excaution.py ├── performance.py ├── portfolio.py └── strategy.py ├── datas ├── bitcoin.csv └── dbORM.py ├── demo ├── equity.csv ├── mac.py └── plot_performance.py ├── docs ├── doctrees │ ├── backtest.doctree │ ├── data.doctree │ ├── environment.pickle │ ├── event.doctree │ ├── excaution.doctree │ ├── index.doctree │ ├── modules.doctree │ ├── performance.doctree │ ├── portfolio.doctree │ └── strategy.doctree └── html │ ├── .buildinfo │ ├── _sources │ ├── backtest.rst.txt │ ├── data.rst.txt │ ├── event.rst.txt │ ├── excaution.rst.txt │ ├── index.rst.txt │ ├── modules.rst.txt │ ├── performance.rst.txt │ ├── portfolio.rst.txt │ └── strategy.rst.txt │ ├── _static │ ├── ajax-loader.gif │ ├── basic.css │ ├── comment-bright.png │ ├── comment-close.png │ ├── comment.png │ ├── css │ │ ├── badge_only.css │ │ └── theme.css │ ├── doctools.js │ ├── documentation_options.js │ ├── down-pressed.png │ ├── down.png │ ├── file.png │ ├── fonts │ │ ├── Inconsolata-Bold.ttf │ │ ├── Inconsolata-Regular.ttf │ │ ├── Lato-Bold.ttf │ │ ├── Lato-Regular.ttf │ │ ├── RobotoSlab-Bold.ttf │ │ ├── RobotoSlab-Regular.ttf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── jquery-3.2.1.js │ ├── jquery.js │ ├── js │ │ ├── modernizr.min.js │ │ └── theme.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── underscore-1.3.1.js │ ├── underscore.js │ ├── up-pressed.png │ ├── up.png │ └── websupport.js │ ├── backtest.html │ ├── data.html │ ├── event.html │ ├── excaution.html │ ├── genindex.html │ ├── index.html │ ├── modules.html │ ├── objects.inv │ ├── performance.html │ ├── portfolio.html │ ├── py-modindex.html │ ├── search.html │ ├── searchindex.js │ └── strategy.html └── images ├── Architecture.png ├── import.png ├── logo1.png └── performance /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/.DS_Store -------------------------------------------------------------------------------- /.idea/Intelligent BackTesing System.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/.idea/Intelligent BackTesing System.iml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/README.md -------------------------------------------------------------------------------- /backtesting/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/backtesting/.DS_Store -------------------------------------------------------------------------------- /backtesting/__pycache__/backtest.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/backtesting/__pycache__/backtest.cpython-36.pyc -------------------------------------------------------------------------------- /backtesting/__pycache__/data.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/backtesting/__pycache__/data.cpython-36.pyc -------------------------------------------------------------------------------- /backtesting/__pycache__/event.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/backtesting/__pycache__/event.cpython-36.pyc -------------------------------------------------------------------------------- /backtesting/__pycache__/excaution.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/backtesting/__pycache__/excaution.cpython-36.pyc -------------------------------------------------------------------------------- /backtesting/__pycache__/performance.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/backtesting/__pycache__/performance.cpython-36.pyc -------------------------------------------------------------------------------- /backtesting/__pycache__/portfolio.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/backtesting/__pycache__/portfolio.cpython-36.pyc -------------------------------------------------------------------------------- /backtesting/__pycache__/strategy.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/backtesting/__pycache__/strategy.cpython-36.pyc -------------------------------------------------------------------------------- /backtesting/backtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/backtesting/backtest.py -------------------------------------------------------------------------------- /backtesting/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/backtesting/data.py -------------------------------------------------------------------------------- /backtesting/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/backtesting/event.py -------------------------------------------------------------------------------- /backtesting/excaution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/backtesting/excaution.py -------------------------------------------------------------------------------- /backtesting/performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/backtesting/performance.py -------------------------------------------------------------------------------- /backtesting/portfolio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/backtesting/portfolio.py -------------------------------------------------------------------------------- /backtesting/strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/backtesting/strategy.py -------------------------------------------------------------------------------- /datas/bitcoin.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/datas/bitcoin.csv -------------------------------------------------------------------------------- /datas/dbORM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/datas/dbORM.py -------------------------------------------------------------------------------- /demo/equity.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/demo/equity.csv -------------------------------------------------------------------------------- /demo/mac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/demo/mac.py -------------------------------------------------------------------------------- /demo/plot_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/demo/plot_performance.py -------------------------------------------------------------------------------- /docs/doctrees/backtest.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/doctrees/backtest.doctree -------------------------------------------------------------------------------- /docs/doctrees/data.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/doctrees/data.doctree -------------------------------------------------------------------------------- /docs/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/doctrees/event.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/doctrees/event.doctree -------------------------------------------------------------------------------- /docs/doctrees/excaution.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/doctrees/excaution.doctree -------------------------------------------------------------------------------- /docs/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/doctrees/modules.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/doctrees/modules.doctree -------------------------------------------------------------------------------- /docs/doctrees/performance.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/doctrees/performance.doctree -------------------------------------------------------------------------------- /docs/doctrees/portfolio.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/doctrees/portfolio.doctree -------------------------------------------------------------------------------- /docs/doctrees/strategy.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/doctrees/strategy.doctree -------------------------------------------------------------------------------- /docs/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/.buildinfo -------------------------------------------------------------------------------- /docs/html/_sources/backtest.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_sources/backtest.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/data.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_sources/data.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/event.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_sources/event.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/excaution.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_sources/excaution.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/modules.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_sources/modules.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/performance.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_sources/performance.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/portfolio.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_sources/portfolio.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/strategy.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_sources/strategy.rst.txt -------------------------------------------------------------------------------- /docs/html/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /docs/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/basic.css -------------------------------------------------------------------------------- /docs/html/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/comment-bright.png -------------------------------------------------------------------------------- /docs/html/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/comment-close.png -------------------------------------------------------------------------------- /docs/html/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/comment.png -------------------------------------------------------------------------------- /docs/html/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/html/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/css/theme.css -------------------------------------------------------------------------------- /docs/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/html/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/down-pressed.png -------------------------------------------------------------------------------- /docs/html/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/down.png -------------------------------------------------------------------------------- /docs/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/file.png -------------------------------------------------------------------------------- /docs/html/_static/fonts/Inconsolata-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/fonts/Inconsolata-Bold.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/fonts/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/RobotoSlab-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/fonts/RobotoSlab-Bold.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/fonts/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/html/_static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/html/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/html/_static/jquery-3.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/jquery-3.2.1.js -------------------------------------------------------------------------------- /docs/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/html/_static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/js/modernizr.min.js -------------------------------------------------------------------------------- /docs/html/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/js/theme.js -------------------------------------------------------------------------------- /docs/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/minus.png -------------------------------------------------------------------------------- /docs/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/plus.png -------------------------------------------------------------------------------- /docs/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/underscore.js -------------------------------------------------------------------------------- /docs/html/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/up-pressed.png -------------------------------------------------------------------------------- /docs/html/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/up.png -------------------------------------------------------------------------------- /docs/html/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/_static/websupport.js -------------------------------------------------------------------------------- /docs/html/backtest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/backtest.html -------------------------------------------------------------------------------- /docs/html/data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/data.html -------------------------------------------------------------------------------- /docs/html/event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/event.html -------------------------------------------------------------------------------- /docs/html/excaution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/excaution.html -------------------------------------------------------------------------------- /docs/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/genindex.html -------------------------------------------------------------------------------- /docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/index.html -------------------------------------------------------------------------------- /docs/html/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/modules.html -------------------------------------------------------------------------------- /docs/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/objects.inv -------------------------------------------------------------------------------- /docs/html/performance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/performance.html -------------------------------------------------------------------------------- /docs/html/portfolio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/portfolio.html -------------------------------------------------------------------------------- /docs/html/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/py-modindex.html -------------------------------------------------------------------------------- /docs/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/search.html -------------------------------------------------------------------------------- /docs/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/searchindex.js -------------------------------------------------------------------------------- /docs/html/strategy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/docs/html/strategy.html -------------------------------------------------------------------------------- /images/Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/images/Architecture.png -------------------------------------------------------------------------------- /images/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/images/import.png -------------------------------------------------------------------------------- /images/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/images/logo1.png -------------------------------------------------------------------------------- /images/performance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickyXuPengfei/Intelligent-BackTesing-System/HEAD/images/performance --------------------------------------------------------------------------------