Hello,
On sending any pricing request via the LDP API in a local Python environment (i.e. in VSCode which is outside of Codebook), I receive the following debug error message:
[2025-02-15T17:05:49.740994+00:00] - [DEBUG] - [sessions.platform.ldp.0] - [132056015177280] | Msg-Proc-ThreadOMMSTREAMING_PRICING_0.0
[OMMSTREAMING_PRICING_0.0] process message {"ID": 5, "Type": "Status", "Key": {"Service": "ELEKTRON_DD", "Name": "AAPL.OQ"}, "State": {"Stream": "Closed", "Data": "Suspect", "Code": "NotEntitled", "Text": "Access Denied: User req to PE(74)"}}
The same request works in Codebook however.
The snippets of code I used were:
df = ld.get_data(universe=["AAPL.OQ"], fields=["BID", "ASK"])
print(df)
stream = ld.content.pricing.Definition(universe=["AAPL.OQ"], fields=["BID", "ASK"]).get_stream()
stream.open(with_updates=False)
print(stream.get_snapshot())
I have verified that I have set up my app key correctly, as I can fetch other data (such as forex data via content-layer pricing chains).
Thank you very much.
Edit: It completely slipped my mind that today is a Saturday. I would nevertheless like to clarify that the error message I received was intended.