mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
642 B
32 lines
642 B
export interface IYahooFinanceHistoricalResponse {
|
|
adjClose: number;
|
|
close: number;
|
|
date: Date;
|
|
high: number;
|
|
low: number;
|
|
open: number;
|
|
symbol: string;
|
|
volume: number;
|
|
}
|
|
|
|
export interface IYahooFinanceQuoteResponse {
|
|
price: IYahooFinancePrice;
|
|
summaryProfile: IYahooFinanceSummaryProfile;
|
|
}
|
|
|
|
export interface IYahooFinancePrice {
|
|
currency: string;
|
|
exchangeName: string;
|
|
longName: string;
|
|
marketState: string;
|
|
quoteType: string;
|
|
regularMarketPrice: number;
|
|
shortName: string;
|
|
}
|
|
|
|
export interface IYahooFinanceSummaryProfile {
|
|
country?: string;
|
|
industry?: string;
|
|
sector?: string;
|
|
website?: string;
|
|
}
|
|
|