Zynk
Private โ running on live moneyI have been vibe trading for years. So has everyone else who trades, whether they admit it or not. I wanted to see what happens when you take the emotions out.
You read the news, you get a feeling about it, and you act on the feeling. Afterwards you explain the decision with fundamentals, but that is not where it came from. The feeling also gets worse the more money is involved, because being up or down this week changes what you do next week.
So Zynk does the same job without any of that. Every few minutes it reads what has been published, forms a view, compares it against the portfolio it already holds, and adjusts. Then it tells me what it did and why in one Slack thread a day, so the reasoning is written down before anyone knows how it turned out.
It turned into an engineering problem
I expected the interesting part to be the trading. It was not. Several things have to hold at once:
- The connection to the broker has to stay alive. The gateway has to stay logged in, it gets reset every day, and it can drop in the middle of a decision.
- The news analysis runs every few minutes, so it has to be cheap. Otherwise the AI bill quietly becomes the most expensive part of the whole thing.
- The strategy is never finished. Buy, hold, sell, short, options. Every couple of weeks I backtest a new idea and put it in if it holds up.
So most of the code is not clever. It is the part that refuses to do something stupid when one of those goes wrong, because in a trading bot a case you did not handle turns into a real loss.
It is also the only thing here with a machine that never sleeps. The broker gateway has to stay logged in around the clock, and I could not find a way around it.
Where it is at
It is still running. Some weeks up, some weeks down, and I am not rich yet. The loop of thinking of something, backtesting it, deploying it and watching it meet the market turned out to be the real product. The portfolio is just the scoreboard.
- Status
- Private, running live
- Built with
- Go, Gemini, Firestore, Cloud Run, Cloud Scheduler, IBKR
- Note
- An experiment, not advice. And not a windfall โ yet.