Skip to content

Latest commit

 

History

History
110 lines (57 loc) · 3.71 KB

StockPrice.md

File metadata and controls

110 lines (57 loc) · 3.71 KB

StockPrice

Properties

Name Type Description
date LocalDate The calendar date that the stock price represents. For non-daily stock prices, this represents the last day in the period (end of the week, month, quarter, year, etc)  
intraperiod Boolean If true, the stock price represents an unfinished period (be it day, week, quarter, month, or year), meaning that the close price is the latest price available, not the official close price for the period  
frequency FrequencyEnum The type of period that the stock price represents  
open BigDecimal The price at the beginning of the period  
high BigDecimal The highest price over the span of the period  
low BigDecimal The lowest price over the span of the period  
close BigDecimal The price at the end of the period  
volume BigDecimal The number of shares exchanged during the period  
adjOpen BigDecimal The price at the beginning of the period, adjusted for splits and dividends  
adjHigh BigDecimal The highest price over the span of the period, adjusted for splits and dividends  
adjLow BigDecimal The lowest price over the span of the period, adjusted for splits and dividends  
adjClose BigDecimal The price at the end of the period, adjusted for splits and dividends  
adjVolume BigDecimal The number of shares exchanged during the period, adjusted for splits and dividends  
factor BigDecimal The factor by which to multiply stock prices before this date, in order to calculate historically-adjusted stock prices.  
splitRatio BigDecimal The ratio of the stock split, if a stock split occurred.  
dividend BigDecimal The dividend amount, if a dividend was paid.  
change BigDecimal The difference in price from the last price for this frequency  
percentChange BigDecimal The percent difference in price from the last price for this frequency  
fiftyTwoWeekHigh BigDecimal The 52 week high price (daily only)  
fiftyTwoWeekLow BigDecimal The 52 week low price (daily only)  
security SecuritySummary The Security of the stock price  

Enum: FrequencyEnum

Name Value
DAILY "daily"
WEEKLY "weekly"
MONTHLY "monthly"
QUARTERLY "quarterly"
YEARLY "yearly"