Skip to content

Commit

Permalink
Issue #728 - The list of possible asset attributes extended:
Browse files Browse the repository at this point in the history
- Added the new `FractionalAtExtended` enumeration member into the `AssetAttributes` enumeration.

(cherry picked from commit 9e49382)
  • Loading branch information
OlegRa committed Mar 1, 2024
1 parent e995c24 commit 56e4593
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Alpaca.Markets/Enums/AssetAttributes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,12 @@ public enum AssetAttributes
/// </summary>
[UsedImplicitly]
[EnumMember(Value = "options_enabled")]
OptionsEnabled
OptionsEnabled,

/// <summary>
/// Asset supports fractional trading at extended hours.
/// </summary>
[UsedImplicitly]
[EnumMember(Value = "fractional_eh_enabled")]
FractionalAtExtended
}
1 change: 1 addition & 0 deletions Alpaca.Markets/PublicAPI.Shipped.txt
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ Alpaca.Markets.AnnouncementsRequest.Symbol.get -> string?
Alpaca.Markets.AnnouncementsRequest.Symbol.set -> void
Alpaca.Markets.AnnouncementsRequest.TimeInterval.get -> Alpaca.Markets.IInclusiveTimeInterval!
Alpaca.Markets.AssetAttributes
Alpaca.Markets.AssetAttributes.FractionalAtExtended = 5 -> Alpaca.Markets.AssetAttributes
Alpaca.Markets.AssetAttributes.OptionsEnabled = 4 -> Alpaca.Markets.AssetAttributes
Alpaca.Markets.AssetAttributes.PtpNoException = 1 -> Alpaca.Markets.AssetAttributes
Alpaca.Markets.AssetAttributes.PtpWithException = 2 -> Alpaca.Markets.AssetAttributes
Expand Down

0 comments on commit 56e4593

Please sign in to comment.