Retrieves the current state of a security.
This query is only available for symbols that offer Asset in their SubscriptionData
.
Controller: Market
Topic: QuerySecurity
Action: Publish
Permissions: Zenith/Market
Name | Type | Description |
---|---|---|
Market | String | Required. The code for the Market the symbol belongs to. Can be a Mixed Market code |
Code | String | Required. The symbol code to retrieve state for |
A Security object with all available fields populated. See the Security subscription for more information.
Code Example
websocket.send(JSON.stringify(
{
Controller:"Market",
Topic:"QuerySecurity",
TransactionID:1,
Data:
{
Market:"ASX",
Code:"BHP"
}
});
Sample Response:
{
"Controller":"Market",
"Topic":"QuerySecurity",
"TransactionID":1,
"Data":
{
"Code":"BHP",
"Market":"ASX",
"Last":10.0
/* Further fields omitted for brevity */
}
}