import { AccountsInstrument } from "./accounts.types";
export interface Position {
    shortQuantity: number;
    averagePrice: number;
    currentDayProfitLoss: number;
    currentDayProfitLossPercentage: number;
    longQuantity: number;
    settledLongQuantity: number;
    settledShortQuantity: number;
    agedQuantity: number;
    instrument: AccountsInstrument;
    marketValue: number;
    maintenanceRequirement: number;
    averageLongPrice: number;
    averageShortPrice: number;
    taxLotAverageLongPrice: number;
    taxLotAverageShortPrice: number;
    longOpenProfitLoss: number;
    shortOpenProfitLoss: number;
    previousSessionLongQuantity: number;
    previousSessionShortQuantity: number;
    currentDayCost: number;
}
//# sourceMappingURL=positions.types.d.ts.map