import { MidaDate } from "../dates/MidaDate"; import { MidaDecimal } from "../decimals/MidaDecimal"; import { MidaQuotationPrice } from "../quotations/MidaQuotationPrice"; import { MidaTick } from "../ticks/MidaTick"; import { MidaTimeframe } from "../timeframes/MidaTimeframe"; export type MidaPeriodParameters = { symbol: string; startDate: MidaDate; endDate: MidaDate; quotationPrice: MidaQuotationPrice; open: MidaDecimal; close: MidaDecimal; low: MidaDecimal; high: MidaDecimal; volume: MidaDecimal; timeframe: MidaTimeframe; isClosed?: boolean; ticks?: MidaTick[]; };