@yash101/schwab-api-client
Version:
A TypeScript client library for interacting with the Charles Schwab Brokerage APIs.
24 lines • 787 B
TypeScript
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