Hello,
I am try to implement the following Datastream excel formula in python, if you have any ideas on how to implement it, would be happy to recieve them.
=@DSGRID(A2;"MNEM";"Latest Value";"";"";"Sym=RIC")
Thanks already.
@sram
Thank you for reaching out to us.
You can use the Datastream Webservice (DatastreamPy) to retrieve data. The code looks like this:
ds.get_data(tickers="@GOOGL,<GOOG.OQ>",fields=["MNEM"], kind=0, start="LATESTDATE")
A RIC must be enclosed in angle brackets.