I am using the market_price_rdpgw_service_discovery.py and was wondering how I can get back only the Bid and Ask field? When i pass in the following, I am getting back many more attributes than i requested. What data types does the 'Field' attribute accept? Many thanks
def _send_market_price_request(self, ric_name):
""" Create and send simple Market Price request """
mp_req_json = {
'ID': 2, # market data=2, Login=1
'Key': {
'Name': ric_name,
'Service': service,
'Field': ['BID', 'ASK']
},
}