price_volume

Summary

This document provides an overview of U.S. stock price and volume data items available in the data catalog.

Example code

from finter.data import ContentFactory
cf = ContentFactory("us_stock", 20200101, 20200201)
df = cf.get_df("price_close")

Metadata

Valid From
Delivery Schedule
Time Zone
Data Frequency

30 5 * * 2-6

Daily

Item List

Price Data

  • price_open: Daily opening price of U.S. stocks

  • price_close: Daily closing price of U.S. stocks

  • price_high: Daily high of U.S. stocks

  • price_low: Daily low of U.S. stocks

  • ctoc: Rate of change in closing price compared to the closing price of U.S. stocks

  • ctoc_total: Rate of change in closing price compared to the cumulative closing price of U.S. stocks

Volume Data

  • trading_volume: Daily trading volume of U.S. stocks

  • amount: Trading volume of U.S. stocks

  • shares_outstanding: Daily number of shares issued for U.S. stocks

Financial Metrics

  • eps: Earnings per Share of U.S. Stocks

  • mkt_cap: Market capitalization of U.S. stocks

  • indicated_annual_dividend: Annual projected dividends of U.S. stocks

  • adr_ratio: ADR ratio of U.S. stocks

Last updated