fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
18 lines (17 loc) • 437 B
TypeScript
/**
* Specifies the funding source used to finance margin or collateralized loan.
* - Tag: 2846
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const FundingSource: Readonly<{
readonly Repo: 0;
readonly Cash: 1;
readonly FreeCedits: 2;
readonly CustomerShortSales: 3;
readonly BrokerShortSales: 4;
readonly UnsecuredBorrowing: 5;
readonly Other: 99;
}>;