-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make Intrinio options chains great again (#5540)
* add multithreading * cleanup * linting * use dateutil.parser * removed `TICKER_EXCEPTIONS` * modified `date` and `type` fields in standard model * set alias for `date` and `type` to match standards * static * static
- Loading branch information
Showing
17 changed files
with
3,747 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,25 +9,38 @@ class Extensions(Container): | |
""" | ||
Routers: | ||
/crypto | ||
/econometrics | ||
/economy | ||
/fixedincome | ||
/forex | ||
/futures | ||
/news | ||
/qa | ||
/stocks | ||
/ta | ||
Extensions: | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] """ | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] """ | ||
# fmt: on | ||
def __repr__(self) -> str: | ||
return self.__doc__ or "" | ||
|
@@ -38,6 +51,12 @@ def crypto(self): # route = "/crypto" | |
|
||
return crypto.ROUTER_crypto(command_runner=self._command_runner) | ||
|
||
@property | ||
def econometrics(self): # route = "/econometrics" | ||
from . import econometrics | ||
|
||
return econometrics.ROUTER_econometrics(command_runner=self._command_runner) | ||
|
||
@property | ||
def economy(self): # route = "/economy" | ||
from . import economy | ||
|
@@ -56,14 +75,32 @@ def forex(self): # route = "/forex" | |
|
||
return forex.ROUTER_forex(command_runner=self._command_runner) | ||
|
||
@property | ||
def futures(self): # route = "/futures" | ||
from . import futures | ||
|
||
return futures.ROUTER_futures(command_runner=self._command_runner) | ||
|
||
@property | ||
def news(self): # route = "/news" | ||
from . import news | ||
|
||
return news.ROUTER_news(command_runner=self._command_runner) | ||
|
||
@property | ||
def qa(self): # route = "/qa" | ||
from . import qa | ||
|
||
return qa.ROUTER_qa(command_runner=self._command_runner) | ||
|
||
@property | ||
def stocks(self): # route = "/stocks" | ||
from . import stocks | ||
|
||
return stocks.ROUTER_stocks(command_runner=self._command_runner) | ||
|
||
@property | ||
def ta(self): # route = "/ta" | ||
from . import ta | ||
|
||
return ta.ROUTER_ta(command_runner=self._command_runner) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.