Skip to content
ATAI Today Brief
HomeNewsConceptsGuidesToolbox
AboutSubscribeUA
Subscribe

AI Today Brief

The daily AI-engineering brief. Built in public. EN · UA.

XTelegramLinkedInYouTubeRSS
NewsConceptsGuidesSubscribeAdvertiseAboutEditorial policyAI disclosurePrivacyTerms

© 2026 AI Today Brief. All rights reserved.

  1. Home/
  2. News/
  3. Career & monetisation/
  4. Ideate Trading Strategies Using an AI-Persona Trained on Citadel Market-Making Frameworks
Career & monetisation

Ideate Trading Strategies Using an AI-Persona Trained on Citadel Market-Making Frameworks

June 23, 2026· 5 min read
OKCurated by Oleksandr Kuzmenko, AI Product Engineer·Updated June 23, 2026·Sources cited on every story
AI-assisted · editor-reviewed·How we use AI
Career & monetisation

An interactive Bloomberg-style terminal simulator lets developers stress-test their algorithmic trading ideas against an AI-generated persona of an ex-Citadel options trader. The system evaluates edge viability, calculates proper sizing rules, and outputs a structured strategy report.

Impact: Medium

Why it matters

It allows developers to stress-test their automated trading bot concepts against institutional market-making logic before writing code or risking capital.

TL;DR

  • 01Stress-test trading logic using the Citadel market-maker lens before risking capital.
  • 02Apply the 'Position = Edge / Variance' rule to systematically size algo trades.
  • 03Verify that paper profits can actually survive venue execution costs and liquidity depth.

Key facts

Options Managed~100,000
Stocks Covered~300
Options Managed
~100,000
Stocks Covered
~300
Sizing Rule Used
Position = Edge / Variance

Stress-Testing Your Bot's Quantitative Edge

Algorithmic retail traders often fail not because they lack market data, but because they approach execution risks incorrectly. This Bloomberg-terminal homage simulates a dialogue with an AI persona modeled on an ex-Citadel options trader. It forces developers to analyze whether their proposed edge is statistically genuine or merely noise that institutional players have already priced in.

The Institutional Sizing Formula

Instead of relying on arbitrary risk-per-trade percentages, the simulation introduces developers to professional desk risk management. It operates on the core quantitative formula: Position = Edge / Variance This strict rule ensures that developers scale down position sizes when working with highly volatile or noisy data feeds, and scale up only when the calculated edge is exceptionally clean and verified.

Assessing Real-World Execution

An edge on paper often disintegrates during live trading due to hidden costs. The terminal guides users through a checklist verifying if their strategy can survive actual venue execution. This includes accounting for exchange fees, slippage, and whether the target market has sufficient liquidity depth to support the intended trade volume without moving the price against the execution.

Try it in 2 minutes

function calculatePositionSize(edge, variance) {
  if (variance <= 0) return 0;
  return edge / variance;
}

javascript

✓ When to use

  • When designing the logic for a new algorithmic trading bot before writing code.
  • To understand how market makers view retail order flow and pricing discrepancies.
  • To structure a pitch or research document for a quantitative trading strategy.

✕ When NOT to use

  • As real-time financial or investment advice, as the data and persona are simulated.
  • For high-frequency trading latency testing, which requires microsecond hardware analysis.
  • For long-term buy-and-hold passive investing strategies.

What to do today

  • →Input your trading bot idea into the Sean terminal to generate a strategy report.
  • →Verify your position sizing algorithm is using mathematical variance rather than gut feel.
  • →Calculate exchange fees and average slippage for your target asset venue.

What the community says

  • “The question IMO is can retail, even using AI, get a good enough data pipeline at a reasonable cost to make any idea at all worth trading? Presumably the 'small' edges... have been worn away.”

    — epsteingpt on Hacker News

  • “hey this seems like a cool product!”

    — chikanlegbees on Hacker News

#Sean Gong Terminal

Sources

  • Sean Gong - Professional Terminal
  • Hacker News Discussion
ShareShare on XShare on LinkedIn

Email digest

Get the morning AI brief

One email a day — the stories that matter for engineers, founders and tech leads. Human-edited, with links to primary sources.

  • ✓120+ sources scanned daily
  • ✓Edited by a human
  • ✓1 email per day
  • ✓EN + UA

By subscribing you agree to the privacy policy.