Response

Field Name
Simplified Format (format: SIMPLE)
Description
TypeValue
typetyTypeStringmyTrade
codecdMarket code (ex. SDG-BTC)String
ask_bidabOrder typeStringASK

BID
pricepTraded priceDouble
volumevTraded volumeDouble
order_uuidouidUnique ID of the orderString
order_typeotType of the orderString
trade_uuidtuidUnique ID of the transactionString
trade_timestampttmsTransaction timestamp (millisecond)Long
stream_typestStream StringREALTIME

Example

Request

ex 1. To get all market information (not specify codes field)

[
  {
    "ticket": "test"
  },
  {
    "type": "myTrade"
  }
]

ex 2. To get all market information (empty array in codes)

[
  {
    "ticket": "test"
  },
  {
    "type": "myTrade",
    "codes": []
  }
]

ex 3. To get specific market information

[
  {
    "ticket": "test"
  },
  {
    "type": "myTrade",
    "codes": ["SGD-XRP"]
  }
]

Response

{
  "type": "myTrade",
  "code": "SGD-XRP",
  "ask_bid": "BID",
  "price": 0.709,
  "volume": 1.41043723,
  "order_uuid": "abcd2289-1xy2-1234-a123-994aa21212a1",
  "order_type": "price",
  "trade_uuid": "dd01abcd-a123-1a8x-821a-a1gb82g12345",
  "trade_timestamp": 1695274799682,
  "stream_type": "REALTIME"
}