By J. Olivo Posted in Rants, Uncategorized on February 16, 2026 0 Comments 2 min read
I finished the first version of StonkBot, my weekend project to help me stop losing money on crypto (hopefully). I wanted to build something that looked like those fancy Bloomberg terminals but ran on my laptop and didn’t cost $24k a year.
Basically, it’s a locally run trading dashboard. It acts like a flight simulator for trading. You can toggle between “Dry Run” mode (which just pretends to trade using simulated money) and real API connections.
I built it because I was tired of using five different websites just to check a chart, see the order book, and track my portfolio. I wanted it all in one screen.
If you want to try it out, you’ll need Python installed. It’s built on Streamlit.
Stuff you need to install:
python 3.8+streamlit (The UI)plotly (For the charts)yfinance (Free data)pandaspydantic (Keeps the data structures sane)Optional but recommended:
scipy (For some of the math-heavy indicators)I will make this available as soon as I ensure that the data is safe and the app doesn’t absolutely chew up AI tokens.