├── .gitattributes ├── README.md └── strategy_pdfs ├── 2006-article-p201.pdf ├── applsci-10-01506-v2.pdf └── jrfm-12-00067-v2.pdf /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | You get all the code & training here: https://algotradecamp.com/?utm_source=github 2 | -------------------------------------------------------------------------------- /strategy_pdfs/2006-article-p201.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/Moon-Dev-Code/913bb557d8d96a7869cf092384c202044178b293/strategy_pdfs/2006-article-p201.pdf -------------------------------------------------------------------------------- /strategy_pdfs/applsci-10-01506-v2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/Moon-Dev-Code/913bb557d8d96a7869cf092384c202044178b293/strategy_pdfs/applsci-10-01506-v2.pdf -------------------------------------------------------------------------------- /strategy_pdfs/jrfm-12-00067-v2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/Moon-Dev-Code/913bb557d8d96a7869cf092384c202044178b293/strategy_pdfs/jrfm-12-00067-v2.pdf --------------------------------------------------------------------------------