Skip to main content

TypeScript shape

interface SymbolResponse {
  currency_code: string;
  description: string;
  name: string;
  original_currency_code: string;
  pricescale: number;
  ticker: string;
  supported_resolutions: string[];
}
currency_code
String!
Currency code.
description
String!
Symbol description.
name
String!
Display name.
original_currency_code
String!
Original currency code.
pricescale
Float!
Price scale factor for charting.
ticker
String!
Ticker string.
supported_resolutions
[String!]!
Supported charting resolutions (e.g. 1, 5, 60, 1D).