Skip to content

Latest commit

 

History

History
59 lines (32 loc) · 1.64 KB

OptionPriceRealtime.md

File metadata and controls

59 lines (32 loc) · 1.64 KB

OptionPriceRealtime

Properties

Name Type Description
last BigDecimal The price of the last trade  
lastSize Integer The size of the last trade  
lastTimestamp OffsetDateTime The time of the last trade  
volume Integer The cumulative volume of this options contract that traded that day.  
ask BigDecimal The price of the top ask order  
askSize Integer The size of the top ask order  
askTimestamp OffsetDateTime The timestamp of the top ask order  
bid BigDecimal The price of the top bid order  
bidSize Integer The size of the top bid order  
bidTimestamp OffsetDateTime The time of the top bid order  
openInterest Integer The total number of this options contract that are still open.  
exerciseStyle ExerciseStyleEnum The exercise style of the option. ("A" = "American", "E" = "European")  

Enum: ExerciseStyleEnum

Name Value
A "A"
E "E"