CCXT.FundingHistory (ccxt_client v0.6.1)

Copy Markdown View Source

Unified funding payment history data.

Represents a single funding payment received or paid on a perpetual swap position.

Fields

  • id - Payment ID
  • symbol - Unified symbol
  • code - Currency code
  • timestamp - Payment time in milliseconds
  • datetime - ISO 8601 datetime string
  • amount - Funding amount (positive = received, negative = paid)
  • info - Raw exchange response

Summary

Functions

JSON Schema for the FundingHistory unified type.

Types

t()

@type t() :: %CCXT.FundingHistory{
  amount: number() | nil,
  code: String.t() | nil,
  datetime: String.t() | nil,
  id: String.t() | nil,
  info: map() | nil,
  symbol: String.t() | nil,
  timestamp: integer() | nil
}

Functions

schema()

@spec schema() :: map()

JSON Schema for the FundingHistory unified type.