OANDA · Schema

UnitsAvailableDetails

Representation of many units of an Instrument are available to be traded for both long and short Orders.

ForexFX TradingCFD TradingFinancial ServicesTrading APIs

Properties

Name Type Description
long string The units available for long Orders.
short string The units available for short Orders.
View JSON Schema on GitHub

JSON Schema

UnitsAvailableDetails.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "UnitsAvailableDetails",
  "description": "Representation of many units of an Instrument are available to be traded for both long and short Orders.",
  "type": "object",
  "properties": {
    "long": {
      "type": "string",
      "description": "The units available for long Orders.",
      "format": "A decimal number encoded as a string. The amount of precision provided depends on what the number represents."
    },
    "short": {
      "type": "string",
      "description": "The units available for short Orders.",
      "format": "A decimal number encoded as a string. The amount of precision provided depends on what the number represents."
    }
  }
}