Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature] Add WebSockets Router #6941

Draft
wants to merge 48 commits into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
ba25664
add a websockets router
deeleeramone Nov 8, 2024
70c4766
setup_db as non-async
deeleeramone Nov 8, 2024
7089dc7
fix the other reference
deeleeramone Nov 8, 2024
291ba50
do it this way instead
deeleeramone Nov 8, 2024
5a99083
deleter
deeleeramone Nov 8, 2024
0a2264d
lint
deeleeramone Nov 8, 2024
e229460
inner quote as single
deeleeramone Nov 8, 2024
f9d00c1
add most of polygon and some general updates
deeleeramone Nov 9, 2024
2c317a3
didn't add that file
deeleeramone Nov 9, 2024
b53a636
add some exception handling
deeleeramone Nov 9, 2024
f1ac74b
handle ValidationError
deeleeramone Nov 10, 2024
402a71f
use sys.stdout.write instead of logger.error for unexpected error
deeleeramone Nov 10, 2024
d748e81
add polygon indices and send message to broadcast server from main cl…
deeleeramone Nov 10, 2024
82b706a
handle UnauthorizedError and map polygon options feeds
deeleeramone Nov 10, 2024
2489128
clear exceptions atexit
deeleeramone Nov 10, 2024
1e82e1e
polygon symbol handling edge case
deeleeramone Nov 10, 2024
6323420
add symbol error handling and move symbol to provider models for cust…
deeleeramone Nov 11, 2024
4fcb48e
fix fmp
deeleeramone Nov 11, 2024
30261ee
Merge branch 'develop' of https://github.com/OpenBB-finance/OpenBB in…
deeleeramone Nov 11, 2024
47f10ef
typo
deeleeramone Nov 11, 2024
cbbd16a
run _setup_database in a thread
deeleeramone Nov 11, 2024
6b640df
fix some tiingo weirdness
deeleeramone Nov 12, 2024
8712e05
raise exc as OpenBBError in client.connect
deeleeramone Nov 12, 2024
95a1356
trade size is optional
deeleeramone Nov 12, 2024
2e4d693
start some documentation
deeleeramone Nov 12, 2024
b69cba8
make bid/ask optional in PolygonStockQuoteWebSocketData
deeleeramone Nov 12, 2024
e93ab2f
got some missing stock quote indicator definitions
deeleeramone Nov 12, 2024
8e6f776
readme file with too much info
deeleeramone Nov 13, 2024
34dc7b4
typo
deeleeramone Nov 13, 2024
133cb72
another typo
deeleeramone Nov 13, 2024
4f5a14b
typo
deeleeramone Nov 13, 2024
31b05c0
fix discriminator tag issue
deeleeramone Nov 15, 2024
b10d640
add integration tests
deeleeramone Nov 15, 2024
fc91aa1
some test params
deeleeramone Nov 15, 2024
3ca267f
docstring things
deeleeramone Nov 15, 2024
025adbd
Merge branch 'develop' into feature/websockets
deeleeramone Nov 17, 2024
ed2e673
store key and auth_token as encrypted values
deeleeramone Nov 19, 2024
8337346
cleanup
deeleeramone Nov 19, 2024
2934cbe
more cleanup
deeleeramone Nov 19, 2024
a43eb86
Merge branch 'develop' of https://github.com/OpenBB-finance/OpenBB in…
deeleeramone Nov 19, 2024
7f3b7bc
small update
deeleeramone Nov 20, 2024
606f48f
Merge branch 'develop' of https://github.com/OpenBB-finance/OpenBB in…
deeleeramone Nov 20, 2024
85ca71d
Merge branch 'develop' into feature/websockets
deeleeramone Nov 21, 2024
5d8d9b4
don't decrypt auth_token when value is None
deeleeramone Nov 21, 2024
a433672
handle url in parse_kwargs
deeleeramone Nov 22, 2024
06397a7
Merge branch 'develop' of https://github.com/OpenBB-finance/OpenBB in…
deeleeramone Nov 22, 2024
5cd5bf9
Merge branch 'develop' of https://github.com/OpenBB-finance/OpenBB in…
deeleeramone Nov 25, 2024
3c3dc32
Merge branch 'develop' into feature/websockets
deeleeramone Nov 27, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions openbb_platform/dev_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@
openbb-econometrics = { path = "./extensions/econometrics", optional = true, develop = true }
openbb-quantitative = { path = "./extensions/quantitative", optional = true, develop = true }
openbb-technical = { path = "./extensions/technical", optional = true, develop = true }
openbb-websockets = { path = "./extensions/websockets", optional = true, develop = true }
"""


Expand Down
Loading
Loading