Looking at trading competition volume data, most of it vanishes the week after the event ends

Been tracking volume numbers on a few trading competitions running during the world cup window. BYDFi's Dream World Cup event has a public leaderboard showing total volume in real time, currently around 69.5M USDT for Round 3 with about 4 days left. Binance has their world cup futures challenge too, though their data is not as easy to pull from a single page. OKX and Bybit have their own versions.

I wanted to see if the volume actually sticks around after these things end. Went back and looked at futures volume charts from earlier this year, the periods around Binance's quarterly tournament in March and Bybit's world series in April. Not perfect data since exchanges do not publish clean competition numbers, but you can see the pattern.

The pattern is pretty consistent. During a competition, futures volume spikes 30 to 60 percent above baseline. First 3 days see the biggest jump as everyone tries to establish a position on the board. Then it plateaus until the last 48 hours, where there is usually another spike as people fight for final rankings. After the event ends, volume drops back to baseline within 3 to 5 days. Sometimes even below baseline if people over-traded and need a break.

The one using a dynamic pool is interesting. Prize pool scales with volume. About 7,500 USDT unlocked right now out of a theoretical max. The full pool unlock threshold is something like 240M USDT which they are clearly not hitting. That is actually better than the fake headline number thing, the pool size reflects real participation.

Compared to Binance, their tournament has a much larger headline prize but way more people. The top spots on Binance are probably trading 50M plus each. On the smaller platform the top 3 are around 7M, 24M, and 7M. Different concentration. Binance top 3 dominate. The smaller board is more spread out so the prize is flatter. Not saying one is better, just different.

The liquidity thing I keep thinking about. Does competition volume provide real liquidity or just noise? Depends on who is trading. Whales doing 20M USDT are probably using limit orders and providing depth. Smaller traders scrambling to hit volume minimums are mostly market orders. That adds to taker volume but not necessarily liquidity. Net effect is probably neutral or slightly positive during the event, then negative after.

Not trying to draw big conclusions. Just sharing the pattern because I see a lot of people ignoring the post-event drop when they talk about how active the market is during these things. The volume is real while it lasts but most of it is borrowed from the following week.

reddit.com
u/AggravatingSpot4330 — 5 days ago

Zcash's latest inflation bug made me question how privacy chains are audited

Zcash disclosed another counterfeiting bug last week. Apparently it could have let someone mint hidden supply for years without anyone noticing. Nobody got robbed, which is great, but it got me thinking about the downside of privacy tech in general.

Here is the thing with zk-SNARKs. They let you prove a transaction is valid without showing the actual numbers. That is cool if you want privacy. But it also means you can not just count coins on a block explorer the way you can with Bitcoin. If a bug like this gets exploited, the supply could be quietly wrong for ages before anyone figures it out. With a transparent chain, some random dude with a spreadsheet would have noticed in a day.

After reading that I went down a rabbit hole of exchange reserve proofs. I had some alts sitting on BYDFi so I checked their published breakdown and it at least shows wallet addresses and reserve ratios in a way you can verify yourself. Not the same thing as auditing Zcash obviously, but it made me realize I care a lot more about custody transparency than I used to.

I am still bullish on privacy coins for actual use cases. Just saying the tradeoff is bigger than people admit. Privacy is great until you have no idea if the money is even real.

reddit.com
u/AggravatingSpot4330 — 7 days ago

Superhuman buying gptzero while half our prs are full of any

Superhuman acquiring gptzero, an ai writing detector, is a weird signal to process when half the pull requests in our typescript repo are clearly model generated. The whole detect whether code was ai written framing feels aimed at the wrong problem. The question was never who typed it. It is whether the types still hold.

The slop discourse usually goes ai writes bad code. In ts the shape is sneakier. Model written ts tends to compile clean and then lie at the type level, an any snuck into a generic, a type assertion that bypasses the check, a Promise<any> that quietly escaped from an untyped api boundary. The compiler is green so the agent calls it done. A detector flags none of that. It tells you a machine wrote it, which you mostly already knew, and tells you nothing about whether the types actually mean anything.

So i stopped caring about authorship and moved the energy into review that checks the type layer, not just tsc passing. Model diffs get explained and checked against intent before they land, i route that through verdent but a strict tsconfig plus a careful reviewer does the same job, the point is catching the quiet any pollution a human skim misses. Detecting origin tells you almost nothing worth knowing.

Authorship is a dead signal. Green build is not the same as correct types, and that gap is where model written ts actually bites.

reddit.com
u/AggravatingSpot4330 — 9 days ago

Kimi K2.7 Code is less interesting as a new coder model and more interesting as an efficiency signal

Moonshot open sourced Kimi K2.7 Code this week. The headline numbers are the obvious part. Kimi Code Bench v2 went from 50.9 to 62.0, Program Bench from 48.3 to 53.6, MLS Bench Lite from 26.7 to 35.1, MCP Mark Verified from 72.8 to 81.1. Same 1T MoE family, 32B active params, 256k context.

The part I think matters more is the 30% reduction in reasoning token usage compared with K2.6. That is the bottleneck I keep running into with coding agents. Not whether the model can solve one benchmark. It is whether I can afford to let it explore, patch, test, fail, recover, without turning a bugfix into a procurement event.

K2.7 Code feels like another signal that open coding models are moving from leaderboard toys into workflow economics. The gap to GPT-5.5 / Opus is still real on coding benches. But on MCP-style agentic evals it is already awkwardly competitive. MCP Mark Verified has K2.7 at 81.1 vs Opus 4.8 at 76.4 in Moonshot's table. Even if you do not trust every vendor number, the direction is clear.

The upcoming high-speed mode is also worth watching. Same model, roughly 5-6x output speed. If that holds, the interesting use case is not replacing the best frontier model everywhere. It is using cheaper/faster open models as the default worker for bounded coding loops, then saving the expensive model for review and edge cases.

That is basically how I have been thinking about my own setup lately. Plan and verify matter more than model loyalty. I still use frontier models for hard calls, but for repeatable coding runs I care about whether the tool lets me route work cleanly.

K2.7 Code is a good excuse to stop asking "is open source better than Claude yet" and start asking which parts of the coding-agent loop no longer need Claude.

reddit.com
u/AggravatingSpot4330 — 23 days ago

I tried building on an agent platform for six months. Here is why I moved to a self-managed stack.

I built on top of an agent platform for six months. It had memory, tool calling, a skills marketplace. It looked complete. It was the wrong shape for what I needed.

The platform handled scaffolding with auth and deployment. It did not handle model selection per task, plan review before execution, or isolation from production infrastructure. When the agent picked a premium model for linting, I had no visibility into why. When it touched a staging database, I had no way to sandbox the execution. The platform abstracted away the exact complexity I needed to manage.

I rebuilt the same workflow with explicit model routing, cost per task, and a review gate before anything ran. Token costs dropped about 60%. The setup was harder because there are more knobs. The control was worth it. Not everyone needs this. Teams with existing infrastructure will probably prefer the managed path.

reddit.com
u/AggravatingSpot4330 — 26 days ago