I am launching a new app to make you free I am launching a new app to make you free Check it out here!
This is the another post of the series: How to build your own algotrading platform.
Last time we talked about The "for-looper" backtester (as I love to call them). Now it's time to see some code!
We said that we have something like that:
:::python for each element of readhistoricaldata(): apply_strategy() how_our_strategy_did()
Sweet, let's load our strategy, load some historical data, run our algorithm and print some results!
I prefer to have my strategies in a JSON format that contains the name of the strategy and some specs (like how many pips for stop_loss or take_profit etc). That way, when we'll start using an event-based backtester, we can pass the strategy through a machine learning algorithm and try to optimize it.
Next line is loading our data in. I know people don't like pickle and there other ways to load data (and we are going to talk about BColz at some point) but for now, just bare with me.
The next line is self-explanatory. We pass the historical data to our algo and we get back some stats to print.
Let's focus on the algorithm a little bit and we can discuss plotting etc at a later point.
The magic of the simple backtesting system
Prepare to be amazed by how ridiculously easy to do this.
Short comings What happens with this type of backtesting is that 1. you'll probably make mistakes when you want to using the exact same algorithm 2. You won't be able to write a very complex strategy (at least that easy) 3. Very difficult to scale (compared to event-based) 4. You need to have your simulation and execution in the same language
BUT remember that this is the BEST and fastest way to start out and figure out how all these things work.
Coming up next, using other well-known backtesters in Python and adding graphs to our own!
If you have more feedback, ping me at jonromero or signup to the newsletter.
Legal outro. This is an engineering tutorial on how to build an algotrading platform for experimentation and FUN. Any suggestions here are not financial advices. If you lose any (or all) you money because you followed any trading advices or deployed this system in production, you cannot blame this random blog (and/or me). Enjoy at your own risk.
- Mon 01 February 2016
Get weekly tips in your inbox.
Update: I updated the code so it works with Oanda's new API. Get it here
Time to talk about brokers, how to place a trade programmatically and most importantly how not to get scammed.
This is the third part of the series: How to build your own algotrading platform.
A …
This is the another post of the series: How to build your own algotrading platform.
Machine learning and trading is a very interesting subject. It is also a subject where you can spend tons of time writing code and reading papers and then a kid can beat you while playing …
No boring ordinary stories.