2020-08-05 23:05:32 +02:00
|
|
|
# ML4T
|
|
|
|
|
|
|
|
This is my solution to the ML4T course exercises. The main page for the course
|
|
|
|
is [here](http://quantsoftware.gatech.edu/Machine_Learning_for_Trading_Course).
|
|
|
|
The page contains a link to the
|
|
|
|
[assignments](http://quantsoftware.gatech.edu/CS7646_Spring_2020#Projects:_73.25).
|
|
|
|
There are eight projects in total.
|
|
|
|
|
2020-08-06 02:10:38 +02:00
|
|
|
To set up the environment I have installed the following packages on my Linux
|
|
|
|
Manjaro based system.
|
2020-08-05 23:05:32 +02:00
|
|
|
|
2020-08-06 02:10:38 +02:00
|
|
|
```
|
|
|
|
sudo pacman -S python-pandas --asdeps python-pandas-datareader python-numexpr \
|
|
|
|
python-bottleneck python-jinja python-scipy python-matplotlib \
|
|
|
|
python-numpy
|
|
|
|
```
|
|
|
|
|
|
|
|
Use unzip with the `-n` flag to extract the archives for the different
|
|
|
|
exercises. This makes sure that you do not override any of the existing files. I
|
|
|
|
might add a makefile to automize this later.
|
|
|
|
|
|
|
|
```
|
2020-08-07 20:06:07 +02:00
|
|
|
unzip -n zips/20Spring_martingale.zip -d ./
|
2020-08-06 02:10:38 +02:00
|
|
|
```
|
2020-08-05 23:05:32 +02:00
|
|
|
|
2020-08-07 00:49:49 +02:00
|
|
|
[Here](https://pythonprogramming.net/candlestick-ohlc-graph-matplotlib-tutorial/)
|
|
|
|
is a tutorial for how to plot candlestick data. Will come in handy later.
|
|
|
|
|
2020-08-07 20:06:07 +02:00
|
|
|
# Reports
|
|
|
|
|
|
|
|
Let's test if I can reference the reports from here:
|
|
|
|
|
|
|
|
[Report 1](./martingale/martingale.md)
|
|
|
|
|