This repository contains the framework built to my dissertation of the quantitative finance mastership program, from FGV University. I proposed the use of a learning algorithm and tile coding to develop an interest rate trading strategy directly from historical high-frequency order book data.
No assumption about market dynamics was made, but it has required the creation of this simulator wherewith the learning agent could interact to gain experience. You can check my master thesis here and the presentation here. Both are in Portuguese. The code structure is heavily inspired by Udacity's smartcab project and in OpenAi's Gym.
This project requires Python 2.7 and the following Python libraries installed:
In a terminal or command window, navigate to the top-level project directory rl_trading/
(that contains this README) and run the following command:
$ python -m market_sim.agent [-h] [-t] [-d] [-s] [-m] <OPTION>
Where OPTION is the kind of agent to be run. The flag [-t] is the number of trials to perform using the same file, [-d] is the date of the file to use in the simulation, [-m] is the month of the date flag and [-s] is the number of sessions on each trial. Use the flag [-h] to get information about what kind of agent is currently available, as well as other flags to use. The simulation will generate log files to be analyzed later on. Be aware that any of those simulations options might take several minutes to complete.
An example of the datasets used in this project can be found here. Unzip it and include in the folder data/preprocessed
.
- GOULD, M. D. et al. Limit order books. Quantitative Finance, 2013.
- CHAN, N. T.; SHELTON, C. An electronic market-maker. 2001.
- BUSONIU, L. et al. Reinforcement learning and dynamic programming using function approximators. CRC press, 2010.
- SUTTON, R. S.; BARTO, A. G. Reinforcement Learning: An Introduction, draft, in progress. 2st. MIT Press, 2017.
The contents of this repository are covered under the Apache 2.0 License.