From f8f68eb8f068d342d747294466623e4907c5823f Mon Sep 17 00:00:00 2001 From: rlmcpherson Date: Wed, 8 Jan 2025 15:53:52 -0500 Subject: [PATCH] Add futures topics to case statement --- websocket/config.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/websocket/config.go b/websocket/config.go index a8fa518..9cfd8f30 100644 --- a/websocket/config.go +++ b/websocket/config.go @@ -227,6 +227,14 @@ func (t Topic) prefix() string { return "V" case BusinessFairMarketValue: return "FMV" + case FutureSecAggs: + return "A" + case FutureMinAggs: + return "AM" + case FutureTrades: + return "T" + case FutureQuotes: + return "Q" } return "" }