Video yükleniyor...

Video Yüklenemedi

Ana Sayfaya Dön

Citadel quant quit and walked out with one thing fund never lets leave the building: 120-year-old math that sees a market crash before the chart does. Every big desk runs it. None of them explain it. He turned it into an HMM bot running BTC 5min markets and made...

93,826 görüntüleme • 2 ay önce •via X (Twitter)

0 Yorum

Yorum bulunmuyor

Orijinal gönderinin yorumları burada görünecek

Benzer Videolar

a quant at a prop firm showed me a 5x5 grid on a napkin said: > this is our entire edge. we don't predict price. we predict which box the market is in and where that box historically leads i didn't understand it for weeks. then it clicked never looked at a chart the same way since grid is called a Markov Chain transition matrix. the math is from 1906, it's in every probability textbook on earth and hedge funds use it because it asks a completely different question than retail traders ever ask retail: will this go up or down quant: what state is this market in, and where does this state typically go every market lives in one of maybe 5-6 states at any given moment tight range, volatility compression, trending with momentum, post-spike reversal, pre-breakout coil not random labels - clusters you identify from actual data using volatility, volume, and momentum readings stacked together once you have the states, you build the matrix: P(state 2 -> state 4) = 73% P(state 4 -> state 1) = 61% P(state 1 -> state 3) = 68% each cell is a historical probability. now when the market is in state 2, you're not guessing you're betting on 73% historical completion. you size it with Kelly. you take the trade when the math says to, not when it feels right i built this on BTC using 2 years of 4-hour data. identified 5 states one i labeled "volatility compression below 20-day mean for 6+ consecutive candles" transitioned to a directional move above 1.8 ATR in 71% of cases average reward/risk on those trades: 5.4 that's not prediction. that's reading a probability table the market keeps filling in for you every single day the part that should bother you: the data to build this is free. the framework is in any quant textbook python to implement it is maybe 200 lines what Renaissance Technologies has that you don't isn't secret data or proprietary signals it's this framework applied to higher-resolution data with more sophisticated state definitions you're not missing information you're asking the wrong question every single time you open a chart

Livsun

188,928 görüntüleme • 3 ay önce

Someone just posted the full blueprint for an AI swarm that does the job of a 200-person quant research team. Six agents. Running 24/7. Finding brand-new alpha while you sleep. Citadel needs 100 PhDs to do this. Two Sigma needs 200. This does it with six bots and one laptop. Two ways to play this - spend a weekend building your own swarm, or copy the wallet of one that's already up $2M: Boris Cherny runs Claude Code at Anthropic. Two weeks ago he said: "I don't prompt Claude anymore. I have loops running that prompt Claude. My job is to write loops" Alpha research is just a pipeline. So instead of sitting in it, you hand each stage to its own agent: > one reads every new research paper overnight and pulls out the trade idea > one builds the features and cleans the data > one backtests it over 20 years, costs and slippage included > one runs the hard stats and kills anything overfit > one checks it still works in every market regime > one strips out plain momentum and value to see if any real edge is left Each of those six is a job a fund pays a $600,000-a-year quant to do. He runs all six for the price of an API bill. The rule that makes it work: the agent that builds a signal never gets to approve it. A separate, stronger agent tries to kill it first. Whatever survives all six by morning is real, new alpha. One trader's already running this exact swarm on Polymarket. That $2M wallet is public, every trade on-chain. The full build is in the post below - six agents, the tool that runs them, and the five mistakes that kill most people. Bookmark & read this before it's buried.

cvxv666

103,734 görüntüleme • 1 ay önce

Wall Street burns billions trying to predict Bitcoin. A 28-year-old self-taught coder in Warsaw made $377,000 by not even trying. He'd lost money on three trading bots before this one. Each looked perfect on paper, then started losing money the moment he ran it for real market. So he built bot that doesn't trust itself. His wallet: The truth is simple: you can't predict the next five minutes of Bitcoin. It's a coin flip. Anyone selling you a "prediction" is selling you nothing. So he stopped predicting. The bot hunts the moments the crowd is wrong instead. Here's the part that makes the money, and it's the opposite of what everyone builds. Any strategy can be made to look amazing on past data. On a 5-minute chart, most of them are just lucky, not real - and they stop working fast. So the bot treats every strategy it finds as fake until it proves otherwise. Each one has to pass a hard test: > test it on old data → test it on data it's never seen → try to break it on purpose → cut it down to the one thing that matters → run it forward → keep it only if it still works Last round, 10 of its 12 "winning" strategies turned out to be fake. It kept the 2 that actually worked and dropped the rest. And it never stops - building, testing, and dumping strategies around the clock. What worked yesterday can stop working today, so the second one starts losing, it gets cut before it costs you a thing. The result: $433,000 across 2,955 trades All his old bots tried to be right. This one just tries to catch itself being wrong - and that's why it's still alive. Bookmark this article below - it's the breakdown that explains why your last bot died. It's pruning and trading right now. Copy its wallet and skip to the edges that survived:

cvxv666

27,854 görüntüleme • 2 ay önce

Using Claude Fable 5, I built a model that predicts the entire 2026 FIFA world cup.. every single game, not just the final.. so let me break the whole thing down. what it does, how it works, and exactly how i built it.. #1 First what it does: it predicts all 104 games of the tournament. not just who lifts the trophy, but every group match, every knockout, the full path from the round of 32 to the final.. everything lands in one dashboard: > group stage, every match with each team's win % and the chance of a draw > standings, how all 12 groups are projected to finish > bracket, the full knockout tree with each team's odds of advancing > champion odds, who's most likely to actually win it all and it doesn't freeze after one prediction. the moment a real game is played, it locks that result in and re-runs everything around it. so the odds move live as the tournament goes, week by week you watch favorites rise and contenders collapse. #2. How it works: the core idea is simple. the model only ever predicts one thing, a single match. the real trick is the repetition. it learns from decades of match history, then plays the whole tournament out from the first game to the final, tens of thousands of times. each run it records who advanced and who won. do that enough and you stop getting one guess and start getting real odds, one team lifts the trophy in maybe 14% of the runs, another in 9%, and so on. #3. So, how i built it ? i didn't hand-write most of the code. i broke the project into 4 pieces, described each one to fable, and let it build while i focused on getting the football logic exactly right. - The data every international match going back over a century, around 50,000 games, plus each team's elo rating, which is the truest measure of strength, and the official 2026 schedule. garbage data means garbage predictions, so this part mattered most. - The features i turned that raw history into signals the model can learn from, the elo gap between the two teams, recent form, goals scored and conceded, and a home boost for the hosts, usa, canada and mexico. - The model for each match it predicts the expected goals for both sides, then turns that into win, draw and loss probabilities plus a likely scoreline. that's what feeds the simulation. - The tournament engine this was the hard part. the 2026 world cup is brand new, 48 teams, 12 groups, a round of 32 that's never existed before, and 8 "best third-placed" teams that slot into the bracket by a fixed fifa table. even the group tiebreakers changed this year, head to head now counts before goal difference. get any of it wrong and the whole bracket falls apart, so i built it carefully and tested the format until it was exact, then wrapped it in a simulation loop that plays the tournament out tens of thousands of times. and the last piece, the live part. as real results come in, they get locked, and only the unplayed games get re-simulated. that's what makes it a living model instead of a one-time prediction. all of it outputs to a clean dashboard you can actually read and screenshot.. right now, before kickoff, it already has a clear favorite to lift the trophy.. 👀 btw who's your pick to win the 2026 world cup?

Axel Bitblaze 🪓

63,796 görüntüleme • 2 ay önce

Harry Markowitz, the Nobel laureate who invented modern portfolio theory: "Every fund from Bridgewater to Citadel runs on one equation I wrote as a 25-year-old grad student. Wall Street pays quants $500K to use it. It's free." the thread above teaches you to build a portfolio the real way, with the mathematics of capital allocation. every line of it traces back to one paper markowitz wrote in 1952. before him, "don't put all your eggs in one basket" was folklore. he turned it into algebra. he proved a portfolio's risk isn't the average of its parts, it's driven by how the parts move together, the covariance. combine assets that don't move in lockstep and you cut risk without giving up return. that is the closest thing to a free lunch in all of finance, and he wrote the exact equation for how much of it you get. that single insight, mean-variance optimization, is the engine under every serious fund on earth. renaissance, bridgewater, citadel, your pension, all of them size risk with markowitz's math. he published it in 1952, won the nobel in 1990, and it sits in every textbook and this free lecture. same story i keep telling: the math that runs the trillion-dollar machine has been public and free for seventy years. here is the part markowitz himself warned about. the equation is only as good as the numbers you feed it, your estimates of return and covariance. feed it garbage and the "optimal" portfolio it hands back is confidently, precisely wrong, and it detonates in the exact crisis it was built to survive. the optimizer is free. estimating the future honestly, and knowing when to distrust your own inputs, is the entire job.

Rossst.03

44,259 görüntüleme • 1 ay önce