From 928190203e8f4225b72fd62cca69b0c03d4bb9ce Mon Sep 17 00:00:00 2001 From: Tim Paine Date: Tue, 15 Dec 2020 17:49:04 -0500 Subject: [PATCH] add fx sse methods toclient --- pyEX/client.py | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/pyEX/client.py b/pyEX/client.py index 6ce9689..d8bb028 100644 --- a/pyEX/client.py +++ b/pyEX/client.py @@ -38,7 +38,16 @@ cryptoQuotesSSE, cryptoQuotesSSEAsync, ) -from .marketdata.fx import fxSSE, fxSSEAsync +from .marketdata.fx import ( + fxSSE, + fxSSEAsync, + forex1SecondSSE, + forex1SecondSSEAsync, + forex5SecondSSE, + forex5SecondSSEAsync, + forex1MinuteSSE, + forex1MinuteSSEAsync, +) from .marketdata.news import newsSSE, newsSSEAsync from .marketdata.sentiment import sentimentSSE, sentimentSSEAsync from .marketdata.sse import ( @@ -1093,6 +1102,12 @@ # FXSSE ("fxSSE", fxSSE), ("fxSSEAsync", fxSSEAsync), + ("forex1SecondSSE", forex1SecondSSE), + ("forex1SecondSSEAsync", forex1SecondSSEAsync), + ("forex5SecondSSE", forex5SecondSSE), + ("forex5SecondSSEAsync", forex5SecondSSEAsync), + ("forex1MinuteSSE", forex1MinuteSSE), + ("forex1MinuteSSEAsync", forex1MinuteSSEAsync), # NewsSSE ("newsSSE", newsSSE), ("newsSSEAsync", newsSSEAsync),