OANDA · Schema

LiquidityRegenerationScheduleStep

A liquidity regeneration schedule Step indicates the amount of bid and ask liquidity that is used by the Account at a certain time. These amounts will only change at the timestamp of the following step.

ForexFX TradingCFD TradingFinancial ServicesTrading APIs

Properties

Name Type Description
timestamp string The timestamp of the schedule step.
bidLiquidityUsed string The amount of bid liquidity used at this step in the schedule.
askLiquidityUsed string The amount of ask liquidity used at this step in the schedule.
View JSON Schema on GitHub

JSON Schema

LiquidityRegenerationScheduleStep.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "LiquidityRegenerationScheduleStep",
  "description": "A liquidity regeneration schedule Step indicates the amount of bid and ask liquidity that is used by the Account at a certain time. These amounts will only change at the timestamp of the following step.",
  "type": "object",
  "properties": {
    "timestamp": {
      "type": "string",
      "description": "The timestamp of the schedule step.",
      "format": "The RFC 3339 representation is a string conforming to https://tools.ietf.org/rfc/rfc3339.txt. The Unix representation is a string representing the number of seconds since the Unix Epoch (January 1st, 1970 at UTC). The value is a fractional number, where the fractional part represents a fraction of a second (up to nine decimal places)."
    },
    "bidLiquidityUsed": {
      "type": "string",
      "description": "The amount of bid liquidity used at this step in the schedule.",
      "format": "A decimal number encoded as a string. The amount of precision provided depends on what the number represents."
    },
    "askLiquidityUsed": {
      "type": "string",
      "description": "The amount of ask liquidity used at this step in the schedule.",
      "format": "A decimal number encoded as a string. The amount of precision provided depends on what the number represents."
    }
  }
}