Skip to content
This repository has been archived by the owner on Jun 15, 2024. It is now read-only.

Commit

Permalink
add fx sse methods toclient
Browse files Browse the repository at this point in the history
  • Loading branch information
timkpaine committed Dec 15, 2020
1 parent f32da94 commit 9281902
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion pyEX/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down Expand Up @@ -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),
Expand Down

0 comments on commit 9281902

Please sign in to comment.