# MidaPeriod()

Candlesticks are represented by the MidaPeriod class.

  • Interface
class MidaPeriod {
    get symbol: string;
    get startDate: MidaDate;
    get open: MidaDecimal;
    get high: MidaDecimal;
    get low: MidaDecimal;
    get close: MidaDecimal;
    get volume: MidaDecimal;
    get timeframe: MidaTimeframe;
    get isClosed: boolean;
    get endDate: MidaDate;
    get momentum: MidaDecimal;
    get body: MidaDecimal;
    get lowerShadow: MidaDecimal;
    get upperShadow: MidaDecimal;
    get ohlc: MidaDecimal[];
    get isBearish: boolean;
    get isNeutral: boolean;
    get isBullish: boolean;
}