Skip to content

Commit

Permalink
Added addtional codes to Notes enum (ADR, FP, FPA, RP, RPA, U).
Browse files Browse the repository at this point in the history
  • Loading branch information
ndodger committed Jul 20, 2020
1 parent c7417d1 commit b1e3d6f
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion IbFlexReader/IbFlexReader.Contracts/Enums/Notes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,19 @@ public enum Notes : long
[EnumName("SY")]
StockYieldEligible = 1L << 50,
[EnumName("T")]
Transfer = 1L << 51
Transfer = 1L << 51,

[EnumName("ADR")]
ADRFeeAccrual = 1L << 52,
[EnumName("FP")]
IBPrincipalForFractional = 1L << 53,
[EnumName("FPA")]
IBPrincipalForFractionalAgentWhole = 1L << 54,
[EnumName("RP")]
IBRisklessPrincipalForFractional = 1L << 55,
[EnumName("RPA")]
IBRisklessPrincipalForFractionalAgentWhole = 1L << 56,
[EnumName("U")]
UnvestedSharesFromStockGrant = 1L << 57
}
}

0 comments on commit b1e3d6f

Please sign in to comment.