Enhancing MetaTrader 5 Development with GitHub: A Step-by-Step Guide for Mac

Meta Trader 5 is a great tool for retail traders to develop, test and live trade their custom trading strategies. Coming from a software development background I found it odd that there was not an easy way to integrate with a source control tool such as GitHub. In this article I’ll show you the exact steps required to setup the integration so you can ensure all your code is safely committed and pushed to GitHub....

February 23, 2025 · 4 min · Jonathan Franklin

Getting Started with Flask: Building Your First RESTful API in Python

In this post we’ll walk through a step-by-step guide on how to build your first RESTful API in Python using the Flask framework. Setup Python and Install Flask Follow these steps to create a new Python virutal environment: # create a new directory mkdir getting-started-with-flask cd getting-started-with-flask # create the virtual environment python -m venv .venv # activate the virtual environment . .venv/bin/activate # macos/linux .venv/Scripts/Activate.bat # windows Next, let’s install Flask:...

September 1, 2024 · 6 min · Jonathan Franklin

Install FastAPI

In this post we will run through setting up a virtual environment, install FastAPI and write a simple script to test the installation. Setup a virtual environment Before starting any new project make sure you create and use a virtual environment. Follow these steps # create a new directory mkdir install-fastapi cd install-fastapi # create the virtual environment python -m venv .venv # activate the virtual environment . .venv/bin/activate # macos/linux ....

August 31, 2024 · 2 min · Jonathan Franklin