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.
112 lines
3.0 KiB
112 lines
3.0 KiB
import { DataProviderService } from '@ghostfolio/api/services/data-provider/data-provider.service';
|
|
import {
|
|
IDataGatheringItem,
|
|
IDataProviderHistoricalResponse
|
|
} from '@ghostfolio/api/services/interfaces/interfaces';
|
|
import { MarketDataService } from '@ghostfolio/api/services/market-data/market-data.service';
|
|
import { DATE_FORMAT } from '@ghostfolio/common/helper';
|
|
import { HistoricalDataItem } from '@ghostfolio/common/interfaces';
|
|
import { UserWithSettings } from '@ghostfolio/common/types';
|
|
import { Injectable, Logger } from '@nestjs/common';
|
|
import { format, subDays } from 'date-fns';
|
|
|
|
import { LookupItem } from './interfaces/lookup-item.interface';
|
|
import { SymbolItem } from './interfaces/symbol-item.interface';
|
|
|
|
@Injectable()
|
|
export class SymbolService {
|
|
public constructor(
|
|
private readonly dataProviderService: DataProviderService,
|
|
private readonly marketDataService: MarketDataService
|
|
) {}
|
|
|
|
public async get({
|
|
dataGatheringItem,
|
|
includeHistoricalData
|
|
}: {
|
|
dataGatheringItem: IDataGatheringItem;
|
|
includeHistoricalData?: number;
|
|
}): Promise<SymbolItem> {
|
|
const quotes = await this.dataProviderService.getQuotes([
|
|
dataGatheringItem
|
|
]);
|
|
const { currency, marketPrice } = quotes[dataGatheringItem.symbol] ?? {};
|
|
|
|
if (dataGatheringItem.dataSource && marketPrice >= 0) {
|
|
let historicalData: HistoricalDataItem[] = [];
|
|
|
|
if (includeHistoricalData > 0) {
|
|
const days = includeHistoricalData;
|
|
|
|
const marketData = await this.marketDataService.getRange({
|
|
dateQuery: { gte: subDays(new Date(), days) },
|
|
symbols: [dataGatheringItem.symbol]
|
|
});
|
|
|
|
historicalData = marketData.map(({ date, marketPrice: value }) => {
|
|
return {
|
|
value,
|
|
date: date.toISOString()
|
|
};
|
|
});
|
|
}
|
|
|
|
return {
|
|
currency,
|
|
historicalData,
|
|
marketPrice,
|
|
dataSource: dataGatheringItem.dataSource,
|
|
symbol: dataGatheringItem.symbol
|
|
};
|
|
}
|
|
|
|
return undefined;
|
|
}
|
|
|
|
public async getForDate({
|
|
dataSource,
|
|
date = new Date(),
|
|
symbol
|
|
}: IDataGatheringItem): Promise<IDataProviderHistoricalResponse> {
|
|
const historicalData = await this.dataProviderService.getHistoricalRaw(
|
|
[{ dataSource, symbol }],
|
|
date,
|
|
date
|
|
);
|
|
|
|
return {
|
|
marketPrice:
|
|
historicalData?.[symbol]?.[format(date, DATE_FORMAT)]?.marketPrice
|
|
};
|
|
}
|
|
|
|
public async lookup({
|
|
includeIndices = false,
|
|
query,
|
|
user
|
|
}: {
|
|
includeIndices?: boolean;
|
|
query: string;
|
|
user: UserWithSettings;
|
|
}): Promise<{ items: LookupItem[] }> {
|
|
const results: { items: LookupItem[] } = { items: [] };
|
|
|
|
if (!query) {
|
|
return results;
|
|
}
|
|
|
|
try {
|
|
const { items } = await this.dataProviderService.search({
|
|
includeIndices,
|
|
query,
|
|
user
|
|
});
|
|
results.items = items;
|
|
return results;
|
|
} catch (error) {
|
|
Logger.error(error, 'SymbolService');
|
|
|
|
throw error;
|
|
}
|
|
}
|
|
}
|
|
|