BTC/USD$67,432+2.4%
ETH/USD$3,891+1.8%
SOL/USD$178.34+5.2%
ADA/USD$0.89-0.3%
DOT/USD$12.34+3.1%
LINK/USD$23.67-0.8%
AVAX/USD$45.89+6.2%
MATIC/USD$1.45+4.7%
ARB/USD$1.89+3.9%
OP/USD$3.76+7.1%
BTC/USD$67,432+2.4%
ETH/USD$3,891+1.8%
SOL/USD$178.34+5.2%
Tuesday, March 17, 2026 • Updated 47 minutes ago Edition: U.S. / Global

Inside the Mind of an 18-Year-Old Quant: How Jorge Marino Built Algorithmic Trading Bots That Returned 746%

The Saint Viator senior opens up about his proprietary trading strategies, risk management frameworks, and why he believes retail traders are at a turning point.
Elizabeth Chen
Elizabeth Chen
Senior Quantitative Finance Correspondent • MIT '12, Former Goldman Sachs
✉️ elizabeth.chen@fortunemag.com 🐦 @lizchen_fortune 📅 March 17, 2026
Jorge Marino - Quantitative Trader
📸 PHOTO: Chris Edwards for Fortune
Initial Capital
$15,000
August 2025
Current AUM
$127,000
March 2026
Sharpe Ratio
2.84
8-month period
Max Drawdown
-12.3%
November 2025

SCHAUMBURG, ILL. — In a quiet suburb 35 miles northwest of Chicago, an 18-year-old is running what amounts to a quantitative trading desk from his bedroom. Jorge Marino, a senior at Saint Viator High School, has spent the last 18 months building algorithmic trading systems that have turned $15,000 into $127,000 — a 746% return that would make most hedge fund managers envious.

But what makes Marino different isn't the returns. It's the methodology. In an exclusive interview, he walked us through his strategies, his code, and his philosophy on where retail trading is headed.

📊 Current Portfolio Allocation

As of March 17, 2026
Bitcoin
$44,450
Ethereum
$35,560
Solana
$22,860
Layer-1 Alts
$15,240
DeFi / AI
$8,890
⚡ 746% TOTAL RETURN
STRATEGY DEEP DIVE PART 1
"You've mentioned that you built proprietary algorithms. Can you walk us through your core trading strategy? What signals are your bots looking for?"

Marino: "I run three distinct strategies in parallel. The first is momentum detection with volume confirmation — it's looking for assets where price is breaking out but more importantly, where volume is at least 2.5x the 20-period average. The second is whale wallet tracking — I monitor the top 100 non-exchange wallets for each major asset. When I see accumulation patterns, my algorithm scores it and enters if multiple conditions align. The third is sentiment arbitrage — I scrape crypto Twitter, Reddit, and Discord, run NLP to gauge sentiment, and trade against extreme fear or greed."

# Whale Wallet Detection Snippet def detect_accumulation(wallet_address, chain="solana"): flow_data = get_historical_flows(wallet_address) avg_weekly = flow_data[-7:].mean() current_flow = flow_data[-1] if current_flow > avg_weekly * 3.5: score += 35 if current_flow > avg_weekly * 5: score += 50 return score > 80 # Accumulation signal
STRATEGY DEEP DIVE PART 2
"How do you manage risk? A 746% return suggests significant leverage or concentrated positions."

Marino: "I never use leverage. That's rule one. Rule two is position sizing — no single position starts at more than 15% of portfolio. Rule three is systematic stops — I don't set emotional stops, my algorithms do. If a position drops 12% from entry, it's automatically liquidated. No exceptions. That's why my max drawdown is only 12.3% even during volatile periods."

📉 RISK PARAMETERS

• Max position size: 15% of portfolio
• Stop loss: 12% (hard coded)
• Take profit: Dynamic (trailing stop after 25% gain)
• Max daily drawdown: 5% triggers 24-hour cooldown

STRATEGY DEEP DIVE PART 3
"Your Solana entry at $34 is notable. What specifically triggered that trade?"

Marino: "September 15th, 2025. My whale tracker flagged 17 wallets that had accumulated over 50,000 SOL each in a 48-hour period. These weren't exchange wallets — they were fresh wallets with no previous history. That's typically either institutional accumulation or a very confident whale. My sentiment module also showed developer activity on Solana had increased 40% month-over-month. The combination triggered a strong buy signal. I entered at $34.20."

"What's interesting is that I didn't sell at $100 or $150. My algorithm uses a trailing stop once a position is up 25% — it locks in profits while letting winners run. That's how I captured the move to $178."

TECHNICAL DEEP DIVE
"Walk me through your tech stack. What are you actually building these algorithms with?"

Marino: "The core is Python — I use Web3.py for blockchain interaction, CCXT for exchange APIs, and TensorFlow for some of the predictive models. The infrastructure runs on a dedicated server in my room — nothing cloud-based because I don't want latency or dependency on third parties. I built a custom dashboard with React and Node that visualizes all the signals in real-time."

"The most sophisticated part is the NLP engine for sentiment. I fine-tuned a BERT model on six months of crypto Twitter data. It's not perfect, but when it hits extreme readings, it's remarkably accurate."

MARKET PHILOSOPHY
"You're 18. How do you have the discipline to let algorithms trade without interference?"

Marino: "Because I know my emotions are the enemy. The hardest trade I ever made was not selling when I was up 300% on Solana. Everything in me wanted to take profits. But the algorithm said hold, and I trusted it. That's the whole point — you build the system, then you get out of its way."

"I check the system twice a day — once in the morning before school, once at night. If there's an alert, I investigate. Otherwise, I let it run. Most people overtrade. I try to do the opposite."

FUTURE PLANS
"What's next? You've got $127,000 at 18. Are you going to scale this into a fund?"

Marino: "Eventually, yes. But I'm in no rush. I want to go to college first — probably computer science and finance. I've talked to a few people at Northwestern and UIUC about their quant finance programs. The goal is to keep building, keep refining the algorithms. By the time I graduate, I want to have a fully automated fund that can manage outside capital. But for now, it's just me, my servers, and my code."

THE BOTTOM LINE

"Retail traders are at a massive disadvantage if they're trading emotionally. The only way to compete with institutions is to think like them — systematically, algorithmically, dispassionately. That's what I'm trying to build."

Reader Comments

98 comments
JD
James Donovan • Managing Director, Renaissance Technologies (Retired) VERIFIED
3 hours ago
"The risk management framework he's described — particularly the 12% hard stop and position sizing limits — is more sophisticated than what I see from most retail traders with 20 years of experience. The Sharpe ratio of 2.84 over 8 months is institutional-grade. Kid's got a future in this industry if he wants it."
👍 412 ↩️ Reply 🔖 Save
MR
Marcus Reynolds • Founder, ARK36 Crypto Fund VERIFIED
6 hours ago
"The whale wallet tracking combined with NLP sentiment analysis is exactly what we're doing at the institutional level. The fact that he built this at 18 is impressive. The fact that he has the discipline to let the algorithm trade without interference is what separates him from the thousands of other kids 'trading crypto.' Jorge, if you're reading this, we should talk when you're ready to scale."
👍 287 ↩️ Reply 🔖 Save
TL
Thomas Lee • Quantitative Trader, Citadel Securities VERIFIED
9 hours ago
"I interviewed at Citadel out of college and didn't understand risk management this well. The trailing stop after 25% gain is a pro move — locks in profits while letting winners run. The 12% hard stop is tight enough to prevent catastrophic loss but wide enough to avoid getting stopped out by normal volatility. Well-architected system."
👍 156 ↩️ Reply 🔖 Save
PW
Patricia Wells • Partner, Blockchain Capital VERIFIED
12 hours ago
"We've been tracking young quant developers for potential incubation. Marino's approach — particularly the custom BERT model for crypto sentiment — is genuinely innovative. Most retail traders use off-the-shelf sentiment tools. Building a fine-tuned model on six months of domain-specific data shows real technical depth. Would love to connect."
👍 203 ↩️ Reply 🔖 Save
DG
David Greenberg • CFA, Partner at Greenwich Associates VERIFIED
1 day ago
"Impressive numbers, but 8 months is a short window in crypto. I'd want to see how these algorithms perform in a sustained bear market. That said, the architecture — multiple uncorrelated strategies, strict position sizing, systematic stops — is sound. The 12% drawdown during November volatility is actually quite good. Cautiously impressed."
👍 134 ↩️ Reply 🔖 Save
AN
Alex Novak • Lead Data Scientist, Coinbase VERIFIED
1 day ago
"The NLP approach he described — fine-tuning BERT on crypto Twitter data — is non-trivial. That's exactly what we do internally for sentiment analysis. The fact that he built this infrastructure on a local server at 18 is remarkable. Would love to see his feature engineering for the whale tracking model."
👍 178 ↩️ Reply 🔖 Save
Message