Before vs After FinFeedAPI
| ML workflow area | Before | After (with Stock Market API) |
| Training data | Clean OHLCV series with limited context. | OHLCV combined with trades, quotes, and order book data reflecting real market behavior. |
| Feature quality | Basic price-based features (returns, averages). | Microstructure-aware features built from liquidity, order flow, and depth changes. |
| Noise and realism | Noise filtered out during preprocessing. | Real market noise preserved, helping models learn robustness. |
| Market timing awareness | Session changes inferred or ignored. | System events clearly mark market phases, halts, and transitions. |
| Label accuracy | Labels distorted by special trade conditions. | Trade flags allow filtering and cleaner labeling of training data. |
| Generalization across regimes | Models overfit to stable periods. | Exposure to volatility shifts and regime changes improves generalization. |
| Explainability | Hard to explain why models fail live. | Inputs tied to observable market behavior, making errors easier to diagnose. |
| Pipeline automation | Custom scripts and inconsistent data sources. | One consistent API via REST and JSON-RPC supports repeatable ML pipelines. |







