UNPKG

@airnub/unusualwhales-api-client

Version:

A client library for interacting with the UnusualWhales API, written in TypeScript

11 lines (10 loc) 684 B
export type AnnouncementTimeType = 'unknown' | 'afterhours' | 'premarket'; export type CandleSizeType = '1m' | '5m' | '10m' | '15m' | '30m' | '1h' | '4h'; export type IssueType = 'Common Stock' | 'ETF' | 'Index' | 'ADR'; export type MarketTimeType = 'r' | 'po' | 'pr'; export type SectorType = 'Basic Materials' | 'Communication Services' | 'Consumer Cyclical' | 'Consumer Defensive' | 'Energy' | 'Financial Services' | 'Healthcare' | 'Industrials' | 'Real Estate' | 'Technology' | 'Utilities'; export * from './ApiClientConfig'; export * from './ScreenerApiQueryParams'; export * from './MarketApiResponse'; export * from './StockApiResponse'; export * from './ScreenerApiResponse';