8 lines
364 B
C
8 lines
364 B
C
// Minimal LocalMarket primitive: per-venue market/book state.
|
|
// This header defines the core struct used by the toy MVP demo.
|
|
typedef struct LocalMarket {
|
|
const char* venue; // venue identifier (name)
|
|
double inventory; // simple inventory proxy (not a real book)
|
|
double risk_budget; // risk budget allocated to this venue
|
|
} LocalMarket;
|