How can I use the History API to obtain historical data for a symbol within a certain date range?
The History API is your go-to resource for retrieving historical data (referred to as 'candles') for any symbol within a designated date range.
To use this API effectively, you need to specify several parameters such as the symbol, candle resolution (e.g., '1D' for daily candles), the date format (either epoch or 'yyyy-mm-dd'), and the start and end dates for the period you're interested in. The API will respond with a dataset containing the open, high, low, close, and volume data for each candle within the specified range.
Related Articles
How can I get historical data for a symbol over a specific date range using the History API?
To retrieve historical data for a symbol within a certain date range, use the History API. This API provides historical data (candles) for your specified symbol. When making your request, include the symbol, candle resolution (e.g., '1D' for daily), ...
Is it possible to obtain real-time data using the History API?
The History API is not designed for retrieving real-time data. Its primary function is to provide historical data. For real-time market data, you would need to use a different API that is specifically intended for that purpose.
Is it possible to obtain real-time data using the History API?
The History API is not designed for retrieving real-time data. Its primary function is to provide historical data. For real-time market data, you would need to use a different API that is specifically intended for that purpose.
How do the History API and the Quotes API differ in terms of the data they provide?
The key difference between the History API and the Quotes API lies in the type of data they offer. The History API is designed to provide historical data, useful for analysis and back-testing. In contrast, the Quotes API delivers real-time data, ...
How do the History API and the Quotes API differ in terms of the data they provide?
The key difference between the History API and the Quotes API lies in the type of data they offer. The History API is designed to provide historical data, useful for analysis and back-testing. In contrast, the Quotes API delivers real-time data, ...