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

Commit

Permalink
Merge pull request #169 from timkpaine/fxclient
Browse files Browse the repository at this point in the history
add fx sse methods toclient
  • Loading branch information
timkpaine authored Dec 15, 2020
2 parents f32da94 + 9281902 commit 62483ea
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 62483ea

Please sign in to comment.