Client is using Python API to connect get streaming data into a python project.
The problem is, he's not able to use the 'service=' parameter in the eikon.StreamingPrices function.
He has no problems when he calls .open on the following:
ek.StreamingPrices(
instruments = ['SFCc1', 'SFCX2', 'EScv1', 'NQcv1','WINc1'],
fields = ['DSPLY_NAME', 'TRDPRC_1', 'ACVOL_1'])
But if he adds a service parameter, he will get the "P[XXXXX] [WebSocket X XXXXX] websocket connected" message, but it will never actually compute and allow him to call anything on the opened connection.
Ex:
ek.StreamingPrices(
instruments = ['SFCc1', 'SFCX2', 'EScv1', 'NQcv1','WINc1'],
fields = ['DSPLY_NAME', 'TRDPRC_1', 'ACVOL_1'],
service = 'IDN_SELECTFEED')
Do you have any idea why he's having this issue?