Skip to content

Latest commit

 

History

History
126 lines (65 loc) · 3.93 KB

StockPriceInterval.md

File metadata and controls

126 lines (65 loc) · 3.93 KB

StockPriceInterval

Properties

Name Type Description
time OffsetDateTime The timestamp that represents the start of the interval span.  
open BigDecimal The first traded price during the period  
close BigDecimal The last traded price during the period  
high BigDecimal The highest price over the span of the period  
low BigDecimal The lowest price over the span of the period  
volume BigDecimal The number of shares exchanged during the period  
closeTime OffsetDateTime The timestamp that represents the end of the interval span.  
interval IntervalEnum The size of the interval.  
average BigDecimal The average trade price of an individual stock during the interval.  
change BigDecimal The change ratio from open to close. ((Close - Open)/Open).  
bidHigh BigDecimal The highest bid price from the interval.  
bidLow BigDecimal The lowest bid price from the interval.  
bidClose BigDecimal The last bid price from the interval.  
bidOpen BigDecimal The first bid price from the interval.  
bidFirstTime OffsetDateTime The timestamp that represents the first bid time from the interval span.  
bidLastTime OffsetDateTime The timestamp that represents the last bid time from the interval span.  
bidChangePercent BigDecimal The ratio of the close to open bid difference, in percent.  
askHigh BigDecimal The highest ask price from the interval.  
askLow BigDecimal The lowest ask price from the interval.  
askClose BigDecimal The last ask price from the interval.  
askOpen BigDecimal The first ask price from the interval.  
askFirstTime OffsetDateTime The timestamp that represents the first ask time from the interval span.  
askLastTime OffsetDateTime The timestamp that represents the last ask time from the interval span.  
askChangePercent BigDecimal The ratio of the close to open ask difference, in percent.  

Enum: IntervalEnum

Name Value
SIXTYMINUTE "SixtyMinute"
THIRTYMINUTE "ThirtyMinute"
FIFTEENMINUTE "FifteenMinute"
TENMINUTE "TenMinute"
FIVEMINUTE "FiveMinute"
ONEMINUTE "OneMinute"