My work at Zebra moved between statistical modeling and live trading. For intraday ETF and index options, I used Bayesian anomaly detection to identify dislocations in stochastic-volatility implied vols; the deployed strategies produced 5–10% weekly returns on capital at risk. At a longer horizon, I combined HMM regime detection, ElasticNet forecasts, and NSGA-II portfolio construction in a daily rebalanced equity strategy that generated 5% annualized alpha in a multi-year backtest.
I also explored how foundation models could change the representation of market history. Rather than asking Chronos to trade directly, I fine-tuned Amazon Chronos-T5 with LoRA on labels produced by the backtesting engine, then used its embeddings as inputs to per-asset TabPFN classifiers. The result was a practical bridge between time-series pretraining and a controlled inference layer.
I treated the LLM as one component inside a quantitative decision system, not as an oracle. In the single-stock options system, live option chains were first converted into trajectories of risk-neutral volatility, jump risk, expected movement, and repricing. gpt-oss-120b reasoned over that structured market state, while fail-closed gates rejected malformed answers, weak evidence, or invalid calibrations before a signal could travel any further.
Reliability became a product of the system rather than a subjective impression of a model response. A daily harness tracked rule compliance, consistency, and robustness. For the intraday FX system, I paired a news-relevance pipeline—BM25, Qwen3 embeddings, reciprocal rank fusion, and reranking—with a DPO-QLoRA-tuned Llama-3.1-8B. Archived market contexts provided ground truth for precision, recall, F1, and coverage, and GEPA prompt changes were evaluated before promotion.
The training and serving path mattered just as much as the model choice. I used vLLM continuous batching to accelerate preference generation, trained a rank-16 LoRA adapter over a frozen 4-bit base on on-demand L4 GPUs, compared it with the base model through paired bootstrap analysis, and exposed both behind an authenticated OpenAI-compatible endpoint.
Some of the most useful agent work was exploratory. I built an autonomous signal-mining loop that combined gpt-oss-120b with exhaustive quantile sweeps, stability screening, and iterative rule refinement. Instead of stopping at plausible hypotheses, it pushed candidates through quantitative tests and surfaced interday options strategies with Sharpe above 1.5.
The same emphasis on evidence shaped a multimodal PDF assistant. CLIP embeddings and Qdrant supported cosine and MMR retrieval, while a two-pass Qwen3 vision workflow separated evidence gathering from answer construction and returned cited responses.