Welcome back to another Python post. Today’s topic is about how to create a feedforward neural network in Python, from scratch. That means, without using Tensorflow, Keras, Pytorch, etc. The main library we’ll be using is numpy, which is the computing library for Python. I usually like to understand the underlying concepts of how things…
All posts in June 2022
How to Implement a FIX Trading Engine in Python
A while ago, I started exploring the world of trading in hopes of building my own trading bots and learning more about this field. While researching, I came across the FIX protocol. In this post, I cover some of the basics of the FIX protocol. More specifically, I’m talking about FIX 4.4. Additionally, I am…
Supercharge Your Python Scripts With Command Line Interfaces
In this post, I’ll be showing you how to create a command-line interface (CLI) for your Python scripts. You will be able to run those scripts from the terminal with arguments. Oftentimes, when you write a script, you need it to perform more than one action at a time. One way to provide this functionality…
LUNA UST Collapse – My Crypto Portfolio in May
Who could have foreseen the events surrounding Terra (LUNA and UST coins) during the month of May? Crypto markets have been on a continued decline for months now, but this past month was something different. I’ve been anxiously waiting until the end of the month to be able to review what the hell happened. Here…