Skip to content

Commit

Permalink
Added IEXTradeMessage.getSaleConditionFlagRaw() (#15)
Browse files Browse the repository at this point in the history
added ability to get the raw SaleConditionFlag byte w/o any processing
  • Loading branch information
vslee authored and WojciechZankowski committed May 11, 2019
1 parent 3f235bb commit a46fbc8
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ public boolean isSinglePriceCrossTrade() {
return (saleConditionFlag & 0x08) != 0;
}

public byte getSaleConditionFlagRaw() { return saleConditionFlag; }

public long getTimestamp() {
return timestamp;
}
Expand Down

0 comments on commit a46fbc8

Please sign in to comment.