Disclaimer: This post is for entertainment/educational purposes only. The content of this post is not meant to provide investment advice or to help with investment decision making. QUICK-NAV:– MACD– Implementation– Full Code Moving Average Convergence…
Simulating Stock Prices: A Naive Approach
Disclaimer: This project/post is for fun/education please don’t use the results of this project to make investment decisions. If you chose to ignore this disclaimer and do just that I am not responsible for the…
Retrieving Historical Stock Data in Python via Yahoo Finance
Retrieving historical stock data for analysis can be somewhat of a task. Many APIs that provide this information require some type of membership, account, or even fee before you have access to the data. Fortunately,…
Read more of Retrieving Historical Stock Data in Python via Yahoo Finance
Screen Capturing and Streaming With Python
Recently I’ve been considering developing an artificial intelligence to play some of the games in my steam library. Most games, unlike StarCraft 2, lack an API for developers to hook into the game to observe…
Creating a Discord Stock Data Bot With the AllyInvest.py Library
In a previous blog post, I detailed the steps I took to create an API wrapper around the Ally Invest API. This API has a lot of functionality to handle account data but also provides…
Read more of Creating a Discord Stock Data Bot With the AllyInvest.py Library
A Client and Server Chat Application in Python
In this post, I will discuss my implementation of a Python client and server chat application. The server is written in Python and uses the socket library and the client, also written in Python, uses…
The Navier-Stokes Equations
Fluid Dynamics Fluid dynamics is a field in science and engineering that describes the flow of fluids, i.e. liquids and gases, with many subfields such as aerodynamics and hydrodynamics. To solve problems in fluid dynamics,…
Creating a LendingClub Secondary Market Bot
In this post, I will outline how to create a bot for trading notes on FolioFn which is a platform that provides a secondary market for Lending Club notes. My goal is to document the…
Using GPGPU Computing to Generate Normalized Latin Squares
Navigation Algorithm Implementation Details Full Code Introduction Many problems in combinatorics pertaining to mutually orthogonal Latin squares (MOLS) require the efficient generation of (at least) a subset of all normalized Latin squares (NLS). This is…
Read more of Using GPGPU Computing to Generate Normalized Latin Squares
A C++ Latin Square Class
Navigation Overview Implementation Full Source Code LatinSquare.h LatinSquare.cpp Header-only File In this post, I will avoid much of the preliminary information needed to understand and work with Latin squares. The focus of the post is…