├── .github └── PULL_REQUEST_TEMPLATE.md ├── LICENSE ├── README.md ├── code-and-notebooks └── generating-correlation-matrices.ipynb ├── computer-science ├── Code-Complete.pdf ├── Effective-Java.pdf ├── Latex Quick Guide.pdf ├── Latex Shortcuts.pdf ├── MathForCS.pdf ├── README.md └── machine-learning │ └── README.md ├── finance ├── Bridgewater-Risk-Parity-2011.pdf ├── README.md └── algo-trading │ ├── 101FormulaicAlphas.pdf │ ├── BuildingDiversifiedPortfolios-OutperformOOS.pdf │ ├── DrawdownWhenToWorry.pdf │ ├── FactorAnalysis-PNC.pdf │ ├── HierarchicalRiskParity.pdf │ ├── MIT18S096-FactorModels.pdf │ ├── MeasuringFactorExposures-AQR-WhitePaper.pdf │ └── README.md ├── math ├── README.md ├── linear-algebra │ ├── README.md │ └── RandomMatrixTheory.pdf └── optimization │ ├── CVXPortfolio.pdf │ └── README.md └── statistics ├── README.md ├── StupidMining.pdf └── bayesian ├── BayesianComputationInFinance.pdf └── ThinkBayes.pdf /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/README.md -------------------------------------------------------------------------------- /code-and-notebooks/generating-correlation-matrices.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/code-and-notebooks/generating-correlation-matrices.ipynb -------------------------------------------------------------------------------- /computer-science/Code-Complete.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/computer-science/Code-Complete.pdf -------------------------------------------------------------------------------- /computer-science/Effective-Java.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/computer-science/Effective-Java.pdf -------------------------------------------------------------------------------- /computer-science/Latex Quick Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/computer-science/Latex Quick Guide.pdf -------------------------------------------------------------------------------- /computer-science/Latex Shortcuts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/computer-science/Latex Shortcuts.pdf -------------------------------------------------------------------------------- /computer-science/MathForCS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/computer-science/MathForCS.pdf -------------------------------------------------------------------------------- /computer-science/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/computer-science/README.md -------------------------------------------------------------------------------- /computer-science/machine-learning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/computer-science/machine-learning/README.md -------------------------------------------------------------------------------- /finance/Bridgewater-Risk-Parity-2011.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/finance/Bridgewater-Risk-Parity-2011.pdf -------------------------------------------------------------------------------- /finance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/finance/README.md -------------------------------------------------------------------------------- /finance/algo-trading/101FormulaicAlphas.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/finance/algo-trading/101FormulaicAlphas.pdf -------------------------------------------------------------------------------- /finance/algo-trading/BuildingDiversifiedPortfolios-OutperformOOS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/finance/algo-trading/BuildingDiversifiedPortfolios-OutperformOOS.pdf -------------------------------------------------------------------------------- /finance/algo-trading/DrawdownWhenToWorry.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/finance/algo-trading/DrawdownWhenToWorry.pdf -------------------------------------------------------------------------------- /finance/algo-trading/FactorAnalysis-PNC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/finance/algo-trading/FactorAnalysis-PNC.pdf -------------------------------------------------------------------------------- /finance/algo-trading/HierarchicalRiskParity.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/finance/algo-trading/HierarchicalRiskParity.pdf -------------------------------------------------------------------------------- /finance/algo-trading/MIT18S096-FactorModels.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/finance/algo-trading/MIT18S096-FactorModels.pdf -------------------------------------------------------------------------------- /finance/algo-trading/MeasuringFactorExposures-AQR-WhitePaper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/finance/algo-trading/MeasuringFactorExposures-AQR-WhitePaper.pdf -------------------------------------------------------------------------------- /finance/algo-trading/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/finance/algo-trading/README.md -------------------------------------------------------------------------------- /math/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/math/README.md -------------------------------------------------------------------------------- /math/linear-algebra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/math/linear-algebra/README.md -------------------------------------------------------------------------------- /math/linear-algebra/RandomMatrixTheory.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/math/linear-algebra/RandomMatrixTheory.pdf -------------------------------------------------------------------------------- /math/optimization/CVXPortfolio.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/math/optimization/CVXPortfolio.pdf -------------------------------------------------------------------------------- /math/optimization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/math/optimization/README.md -------------------------------------------------------------------------------- /statistics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/statistics/README.md -------------------------------------------------------------------------------- /statistics/StupidMining.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/statistics/StupidMining.pdf -------------------------------------------------------------------------------- /statistics/bayesian/BayesianComputationInFinance.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/statistics/bayesian/BayesianComputationInFinance.pdf -------------------------------------------------------------------------------- /statistics/bayesian/ThinkBayes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bualpha/quant-library/HEAD/statistics/bayesian/ThinkBayes.pdf --------------------------------------------------------------------------------