├── LICENSE ├── README.md ├── docs ├── finance_data │ └── cot_commitments-of-traders.md ├── finance_forex │ ├── digital-currencies.md │ └── forex-concepts.md ├── finance_history.md ├── finance_macroeconomics │ ├── gdp_gross-domestic-product.md │ └── world-economic-outlook.md ├── finance_research │ ├── commodities.md │ ├── data-companies.md │ └── software-companies.md ├── finance_technical-analysis │ ├── autoregressive-integrated-ma.md │ └── balance-of-power.md ├── index.md ├── quant_python │ ├── python.md │ └── python_zen.md ├── research_papers.md └── terminology.md ├── scripts ├── index.md └── python │ └── utils │ └── print_env_var.py └── src └── static └── img ├── .gitkeep └── markus-spiske-5gGcn2PRrtc-unsplash.jpg /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dMLTquant/dMLTresearch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dMLTquant/dMLTresearch/HEAD/README.md -------------------------------------------------------------------------------- /docs/finance_data/cot_commitments-of-traders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dMLTquant/dMLTresearch/HEAD/docs/finance_data/cot_commitments-of-traders.md -------------------------------------------------------------------------------- /docs/finance_forex/digital-currencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dMLTquant/dMLTresearch/HEAD/docs/finance_forex/digital-currencies.md -------------------------------------------------------------------------------- /docs/finance_forex/forex-concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dMLTquant/dMLTresearch/HEAD/docs/finance_forex/forex-concepts.md -------------------------------------------------------------------------------- /docs/finance_history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dMLTquant/dMLTresearch/HEAD/docs/finance_history.md -------------------------------------------------------------------------------- /docs/finance_macroeconomics/gdp_gross-domestic-product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dMLTquant/dMLTresearch/HEAD/docs/finance_macroeconomics/gdp_gross-domestic-product.md -------------------------------------------------------------------------------- /docs/finance_macroeconomics/world-economic-outlook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dMLTquant/dMLTresearch/HEAD/docs/finance_macroeconomics/world-economic-outlook.md -------------------------------------------------------------------------------- /docs/finance_research/commodities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dMLTquant/dMLTresearch/HEAD/docs/finance_research/commodities.md -------------------------------------------------------------------------------- /docs/finance_research/data-companies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dMLTquant/dMLTresearch/HEAD/docs/finance_research/data-companies.md -------------------------------------------------------------------------------- /docs/finance_research/software-companies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dMLTquant/dMLTresearch/HEAD/docs/finance_research/software-companies.md -------------------------------------------------------------------------------- /docs/finance_technical-analysis/autoregressive-integrated-ma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dMLTquant/dMLTresearch/HEAD/docs/finance_technical-analysis/autoregressive-integrated-ma.md -------------------------------------------------------------------------------- /docs/finance_technical-analysis/balance-of-power.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dMLTquant/dMLTresearch/HEAD/docs/finance_technical-analysis/balance-of-power.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dMLTquant/dMLTresearch/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/quant_python/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dMLTquant/dMLTresearch/HEAD/docs/quant_python/python.md -------------------------------------------------------------------------------- /docs/quant_python/python_zen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dMLTquant/dMLTresearch/HEAD/docs/quant_python/python_zen.md -------------------------------------------------------------------------------- /docs/research_papers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dMLTquant/dMLTresearch/HEAD/docs/research_papers.md -------------------------------------------------------------------------------- /docs/terminology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dMLTquant/dMLTresearch/HEAD/docs/terminology.md -------------------------------------------------------------------------------- /scripts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dMLTquant/dMLTresearch/HEAD/scripts/index.md -------------------------------------------------------------------------------- /scripts/python/utils/print_env_var.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dMLTquant/dMLTresearch/HEAD/scripts/python/utils/print_env_var.py -------------------------------------------------------------------------------- /src/static/img/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/static/img/markus-spiske-5gGcn2PRrtc-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dMLTquant/dMLTresearch/HEAD/src/static/img/markus-spiske-5gGcn2PRrtc-unsplash.jpg --------------------------------------------------------------------------------