You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Zipline Python Opensource Backtester
Hi,
I was wondering if anyone here has written a data ingestion function for blpapi? If not, could someone point me to an example of a data ingestion function from an API?
Thanks,
Sam
Walt
unread,
Jul 6, 2017, 1:21:41 PM7/6/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Zipline Python Opensource Backtester
I've ingested data from Bloomberg but not directly through the API. I first used pybbg (https://github.com/kyuni22/pybbg) to get the data into pandas dataframes, saved them locally and then ingested them.
samu...@gmail.com
unread,
Jul 7, 2017, 9:12:55 AM7/7/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Zipline Python Opensource Backtester
Thanks for your reply! I was thinking of doing the same - load it as an OHLCV dataframe and then feed them into the Zipline directly.