/** * Outcome Calculation Module * * Provides standalone outcome calculation logic separate from price fetching. * This module is used by keeper bots to determine when to call mark_extreme. * * @module outcome */ export { calculateOutcome, shouldMarkExtreme } from "./calculate.js"; export { verifyOutcomeAlignment, getRequiredStrike } from "./verify.js"; export type { OutcomeResult } from "./types.js";