You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But this is throwing this error in blpapi\exception.py:
UnsupportedOperationException: Attempt access name 'security' on array element 'securityData' (0x00080003)
I'm not sure if its my implementation, or something more deep-seeded going on. Any help appreciated!
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi all,
I was wondering if anyone else has been able to do threading / async-await with bdp/blp calls?
My current workflow has me calling, in sequential order:
hist_data = blp.bdh(4 tickers , 1 field, start_date = 10 yrs ago)
live_data = blp.bdp(150 tickers, 4 fields)
This sequential call takes about 3.5 seconds to run, split pretty evenly between the two calls.
I was hoping to do something like to speed up the result
`with ThreadPoolExecutor() as executor:
But this is throwing this error in blpapi\exception.py:
UnsupportedOperationException: Attempt access name 'security' on array element 'securityData' (0x00080003)
I'm not sure if its my implementation, or something more deep-seeded going on. Any help appreciated!
Beta Was this translation helpful? Give feedback.
All reactions