Provides a list of forex price quotes for a given forex currency pair and timeframe.
Name | Type | Description | Notes |
---|---|---|---|
pair | String | The Forex Currency Pair code | |
timeframe | String | The time interval for the quotes | |
timezone | String | Returns trading times in this timezone | [optional] [default to UTC] |
startDate | Date | Return Forex Prices on or after this date | [optional] |
startTime | String | Return Forex Prices at or after this time (24-hour in ‘hh:mm' format, UTC timezone) | [optional] |
endDate | Date | Return Forex Prices on or before this date | [optional] |
endTime | String | Return Forex Prices at or before this time (24-hour in ‘hh:mm' format, UTC timezone) | [optional] |
pageSize | Number | The number of results to return | [optional] [default to 100] |
nextPage | String | Gets the next page of data from a previous API call | [optional] |
Name | Type | Description |
---|---|---|
prices | [ForexPrice] | |
pair | ForexPair | The Forex currency pair for which prices were requested |
nextPage | String | The token required to request the next page of the data. If null, no further results are available. |
Name | Type | Description |
---|---|---|
occurredAt | String | The timestamp of the beginning of the timeframe. The open prices would be at this time, while close prices would be at this time plus the timeframe. |
openBid | Number | Open bid |
highBid | Number | High bid |
lowBid | Number | Low bid |
closeBid | Number | Close bid |
openAsk | Number | Open ask |
highAsk | Number | High ask |
lowAsk | Number | Low ask |
closeAsk | Number | Close ask |
totalTicks | Number | Total ticks |