OANDA · Schema

QuoteHomeConversionFactors

QuoteHomeConversionFactors represents the factors that can be used used to convert quantities of a Price's Instrument's quote currency into the Account's home currency.

ForexFX TradingCFD TradingFinancial ServicesTrading APIs

Properties

Name Type Description
positiveUnits string The factor used to convert a positive amount of the Price's Instrument's quote currency into a positive amount of the Account's home currency. Conversion is performed by multiplying the quote units by
negativeUnits string The factor used to convert a negative amount of the Price's Instrument's quote currency into a negative amount of the Account's home currency. Conversion is performed by multiplying the quote units by
View JSON Schema on GitHub

JSON Schema

QuoteHomeConversionFactors.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "QuoteHomeConversionFactors",
  "description": "QuoteHomeConversionFactors represents the factors that can be used used to convert quantities of a Price's Instrument's quote currency into the Account's home currency.",
  "type": "object",
  "properties": {
    "positiveUnits": {
      "type": "string",
      "description": "The factor used to convert a positive amount of the Price's Instrument's quote currency into a positive amount of the Account's home currency.  Conversion is performed by multiplying the quote units by the conversion factor.",
      "format": "A decimal number encoded as a string. The amount of precision provided depends on what the number represents."
    },
    "negativeUnits": {
      "type": "string",
      "description": "The factor used to convert a negative amount of the Price's Instrument's quote currency into a negative amount of the Account's home currency.  Conversion is performed by multiplying the quote units by the conversion factor.",
      "format": "A decimal number encoded as a string. The amount of precision provided depends on what the number represents."
    }
  }
}