The Startup

Get smarter at building your thing. Follow to join The Startup’s +8 million monthly readers & +772K followers.

Follow publication

Member-only story

Beginning Forex Algorithmic Trading With Python

I finally got around to implementing my first Forex trading robot!

Photo by Clemens Van Lay on Unsplash

Introduction

For years, I have fantasized about building a Forex trading robot that would slowly and consistently increase its account balance. However, I was never really sure where to start. What company to use? How do I access the APIs? Is it safe?

Recently, I blocked off some time to learn what would be needed to develop such a system and it culminated in a very simple to implement python script. In the remainder of this article, I will detail how it works.

Disclosure: This article is not investment, tax, or legal advice, nor is it a solicitation for investment. Furthermore, I am not a financial expert and offer this only as a way to share my experiences.

Methods

Step 1 — Get a Forex Account

The first step is to open an account with a broker. After a bit of research, I decided to go with forex.com. Specifically their standard online account here. They have been around since 2006 and are part of the GAIN Global Markets Inc group which has been around since 1999. Their user base and trading volume seemed to make them a trustworthy platform. However, I have never used another broker so have no basis for comparison.

Creating an account on their platform can be done by following the instructions on their website and will work much the same way as opening an account with any other investment platform or bank.

Once you have created your account, email them at apisupport@gaincapital.com to request access to your API credentials. You will require a $5k balance if you want to trade on your main account or you can opt to have an account created with a virtual balance (not real money) of $50k. I chose the latter.

Step 2 — Write Trader Script

I started reading over the provided API documentation but it left much to be desired. In the hope of streamlining the process, I started searching forex.com’s forums and came across this open source Python client!

Important: Whenever dealing with sensitive information such as financial data it is important to vet any code…

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

The Startup
The Startup

Published in The Startup

Get smarter at building your thing. Follow to join The Startup’s +8 million monthly readers & +772K followers.

Paulo Carvalho
Paulo Carvalho

Written by Paulo Carvalho

Want to chat about startups, consulting or engineering? Just send me an email on paulo@avantsoft.com.br.

Responses (1)

Write a response

Hi Paulo
I hope that you enjoy the journey. I developed an Algo (dozens actually) with some help that trades, as you are working on ,but there was not as much Github and experts available then as now. We ended up using a Conv.LSTM and trained it on…

--