qs/getAvailableQsProviders
Returns the list of available providers to take from
POST api/qs/getAvailableQsProviders
Request
{
"instrument": <string>
}{
"instrument": "BTC-USD"
}Request Fields
Field
Type
Description
instrument
string
Instrument name, optional
Response
{
"providers": {
"<instrument_name>": [
<Efx::ClientId>
]
},
"providerSupportedOrderTypes": {
"<Efx::ClientId>": [<string>]
}
}{
"providers": {
"BTC-EUR": [1],
"BTC-USD": [1]
},
"providerSupportedOrderTypes": {
"1": ["limitFOK", "limitIOC"]
}
}Response Fields
Field
Type
Description
providers
dict
<instrument_name>
array
List of IDs for available providers for the instrument <instrument_name>
providerSupportedOrderTypes
dict
<Efx::ClientID>
array
List of taker order types supported by the provider with the corresponding FM ID.
The array may contain one or more of the following values: "limitFOK", "limitIOC", "marketFOK", "marketIOC"
Last updated