@rpidanny/nepse.js
Version:
Fetch stock data from Nepal Stock Exchange
30 lines (29 loc) • 826 B
TypeScript
import { TFloorSheet, TSecurityHistoryItem } from './nepse';
export declare type TDailyStockPrice = {
serialNumber: number;
businessDate: string;
securityId: number;
symbol: string;
securityName: string;
openPrice: number;
highPrice: number;
lowPrice: number;
closePrice: number;
totalTradedQuantity: number;
totalTradedValue: number;
previousDayClosePrice: number;
fiftyTwoWeekHigh: number;
fiftyTwoWeekLow: number;
lastUpdatedTime: string;
lastUpdatedPrice: number;
totalTrades: number;
averageTradedPrice: number;
marketCap: number;
};
export declare type TDailyFloorSheet = {
totalAmount: number;
totalQty: number;
totalTrades: number;
floorSheets: TFloorSheet[];
};
export declare type TSecurityHistory = TSecurityHistoryItem[];