polygon.io
Version:
Isomorphic Javascript client for Polygon.io Stocks, Forex, and Crypto APIs
5 lines (4 loc) • 622 B
TypeScript
import { IAggregateQuery, IAggResponseFormatted } from "../stocks/aggregates";
export declare const forexPreviousClose: (apiKey: string, apiBase: string, ticker: string, query?: IAggregateQuery) => Promise<IAggResponseFormatted>;
export declare const forexAggregates: (apiKey: string, apiBase: string, ticker: string, multiplier: number, timespan: string, from: string, to: string, query?: IAggregateQuery) => Promise<IAggResponseFormatted>;
export declare const forexGroupedDaily: (apiKey: string, apiBase: string, locale: string, market: string, date: string, query?: IAggregateQuery) => Promise<IAggResponseFormatted>;