├── .gitignore ├── README.md ├── WHERE ARE THE NOTEBOOKS.txt ├── append.py ├── append_small.py ├── extra_reading.txt └── get_data.py /.gitignore: -------------------------------------------------------------------------------- 1 | data/* 2 | *DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogrammer/financial_engineering/HEAD/README.md -------------------------------------------------------------------------------- /WHERE ARE THE NOTEBOOKS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogrammer/financial_engineering/HEAD/WHERE ARE THE NOTEBOOKS.txt -------------------------------------------------------------------------------- /append.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogrammer/financial_engineering/HEAD/append.py -------------------------------------------------------------------------------- /append_small.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogrammer/financial_engineering/HEAD/append_small.py -------------------------------------------------------------------------------- /extra_reading.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogrammer/financial_engineering/HEAD/extra_reading.txt -------------------------------------------------------------------------------- /get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogrammer/financial_engineering/HEAD/get_data.py --------------------------------------------------------------------------------