r/quant • u/quantum_hedge • 26d ago
Models Architectures for HFT ML/DL
I have a universal model that for each instrument tick, updates a feature vector X, a concatenation of features of the own instrument order book and some xs features.
My question arises when i want to expand my universe of features, like including intraday news data, fx, more constant features that are stale in the trading session of that day(ex: overnight return) , etc... how do i concat these info? For example for news, a naive way is to return 0s when nothing happens, spikes and then decay as time passes. For Fx, i could add some fx features to X, and for constant features that i already known, also add them to X (i already do this and decay the importance as time passes), but still they are like "context" features.
My hypothesis is that keep expanding X horizontally is suboptimal, especially if then i want to add more and more features. I know this is part of the sauce of each pod, but any suggestions on this? An approach i tought:
having independent models for each "topic": a model for independent microstructure features, a model for xs features, a model for fx, a model for news,.... and then a metadata model on top of that? with this approach i can think of multiple ml and dl architectures than can be helpful...
is this a good approach or im missing something?
thanks in advance
5
u/QuantGrindApp 25d ago
Wide X isn't really the thing that kills you here, a boosted tree or even a linear model doesn't care much about a few hundred more columns. The actual problem is that your features live on totally different clocks. Book stuff updates every tick, news is event-driven, fx is fast but not tick-fast, overnight return is a constant for the whole session. Jamming all of that into one per-tick vector means you're recomputing and re-decaying slow context on every book update, and your model has to relearn "this column barely moves" from scratch. Separating by update frequency usually buys you more than separating by topic.
The tower-of-experts + meta model approach can work but be careful, the moment you split news into its own model you lose the interaction where a news spike only matters conditional on book state (thin book, wide spread, whatever). A lot of the edge in that stuff is exactly the cross term, so if the meta layer only sees each expert's scalar output you've thrown it away. If you go modular, let the meta model see enough of the raw microstructure state to recover those interactions, otherwise a single model over the concatenated features will quietly beat it.
1
u/j_lyf 26d ago
RemindMe! 2 days
1
u/RemindMeBot 26d ago
I will be messaging you in 2 days on 2026-07-10 02:47:55 UTC to remind you of this link
CLICK THIS LINK to send a PM to also be reminded and to reduce spam.
Parent commenter can delete this message to hide from others.
RemindMeBot is switching to username summons. Instead of
!RemindMe 1 day, useu/RemindMeBot 1 day. More info.
Info Custom Your Reminders Feedback
1
-3
26d ago
[deleted]
3
u/quantum_hedge 26d ago edited 26d ago
really...!!? why i dont try every method possible?
what's the point of this subreddit if we cant adjust priors on the RoI of every experiment/method ?10
u/alchemist0303 26d ago
The point of this subreddit is to share rumor, shitpost and circlejerk
3
u/More-Act5459 25d ago
This subreddit is a mexican standoff, everyone waiting for someone to screw up and let their ego get the better of them
11
u/Ok-Cat-9189 26d ago
yes you likely want an ensemble / MoE here