From 4b171cb6559efc355f6d3a8cca45fc207fbca9bf Mon Sep 17 00:00:00 2001 From: Thaddeus Date: Wed, 12 Jun 2024 09:11:25 +0200 Subject: [PATCH] improvement: increase binance futures open interest querying interval for real-time data --- src/realtimefeeds/binance.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/realtimefeeds/binance.ts b/src/realtimefeeds/binance.ts index ea6bae0..556b637 100644 --- a/src/realtimefeeds/binance.ts +++ b/src/realtimefeeds/binance.ts @@ -45,7 +45,7 @@ abstract class BinanceRealTimeFeedBase extends MultiConnectionRealTimeFeedBase { class BinanceFuturesOpenInterestClient extends PoolingClientBase { constructor(exchange: string, private readonly _httpURL: string, private readonly _instruments: string[]) { - super(exchange, 30) + super(exchange, 3) } protected async poolDataToStream(outputStream: Writable) {