OANDA · Schema

PositionFinancing

OpenTradeFinancing is used to pay/collect daily financing charge for a Position within an Account

ForexFX TradingCFD TradingFinancial ServicesTrading APIs

Properties

Name Type Description
instrument string The instrument of the Position that financing is being paid/collected for.
financing string The amount of financing paid/collected for the Position.
openTradeFinancings array The financing paid/collecte for each open Trade within the Position.
View JSON Schema on GitHub

JSON Schema

PositionFinancing.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PositionFinancing",
  "description": "OpenTradeFinancing is used to pay/collect daily financing charge for a Position within an Account",
  "type": "object",
  "properties": {
    "instrument": {
      "type": "string",
      "description": "The instrument of the Position that financing is being paid/collected for.",
      "format": "A string containing the base currency and quote currency delimited by a \"_\"."
    },
    "financing": {
      "type": "string",
      "description": "The amount of financing paid/collected for the Position.",
      "format": "A decimal number encoded as a string. The amount of precision provided depends on the Account's home currency."
    },
    "openTradeFinancings": {
      "type": "array",
      "description": "The financing paid/collecte for each open Trade within the Position.",
      "items": {
        "$ref": "#/definitions/OpenTradeFinancing"
      }
    }
  }
}