Skip to content

Latest commit

 

History

History
62 lines (40 loc) · 2.91 KB

File metadata and controls

62 lines (40 loc) · 2.91 KB

StockPriceInterval

Properties

Name Type Description
time POSIXlt The timestamp that represents the start of the interval span.  
open Numeric The first traded price during the period  
close Numeric The last traded price during the period  
high Numeric The highest price over the span of the period  
low Numeric The lowest price over the span of the period  
volume Numeric The number of shares exchanged during the period  
close_time POSIXlt The timestamp that represents the end of the interval span.  
interval Character The size of the interval.  
average Numeric The average trade price of an individual stock during the interval.  
change Numeric The change ratio from open to close. ((Close - Open)/Open).  
bid_high Numeric The highest bid price from the interval.  
bid_low Numeric The lowest bid price from the interval.  
bid_close Numeric The last bid price from the interval.  
bid_open Numeric The first bid price from the interval.  
bid_first_time POSIXlt The timestamp that represents the first bid time from the interval span.  
bid_last_time POSIXlt The timestamp that represents the last bid time from the interval span.  
bid_change_percent Numeric The ratio of the close to open bid difference, in percent.  
ask_high Numeric The highest ask price from the interval.  
ask_low Numeric The lowest ask price from the interval.  
ask_close Numeric The last ask price from the interval.  
ask_open Numeric The first ask price from the interval.  
ask_first_time POSIXlt The timestamp that represents the first ask time from the interval span.  
ask_last_time POSIXlt The timestamp that represents the last ask time from the interval span.  
ask_change_percent Numeric The ratio of the close to open ask difference, in percent.  
trade_count Numeric The number of qualified trades executed during the period  

[Back to Model list] [Back to API list] [Back to README]