Skip to content

Quickfin is a Python module providing instant access to live and historical stock market price data, automated Plotly data visualization generators and a data catalog for referencing equities, stock symbols, sector, and industry information.

License

Notifications You must be signed in to change notification settings

REPNOT/quickfin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Quick Fin  PyPI - Version GitHub Release

Description

Quickfin is a Python module providing instant access to live and historical stock market price data, automated Plotly data visualization generators and a data catalog for referencing equities, stock symbols, sector, and industry information.

Dependencies

Library Language Link
Plotly Python https://github.com/plotly/plotly.py

Installation

pip install quickfin

Upgrade

pip install --upgrade quickfin

Quickstart

Retrieve the most recent stock price data available for the stock symbol passed to the symbol parameter. Method will return live market price quotes during trading hours.

Input:

from quickfin import *

price_data = PriceData()

print(price_data.current("SNOW"))

Output:

{
  'current': {
    'Adj Close': 161.6,
    'Change Amount': 2.42,
    'Change Rate': 0.01,
    'Close': 161.6,
    'Date': '2024-03-28',
    'Day Range': 4.89,
    'High': 165.89,
    'Low': 161.0,
    'Open': 164.02,
    'Volume': 10106900
  },
  'info': {
    'industry': 'Software - Application',
    'name': 'Snowflake Inc.',
    'sector': 'Technology',
    'symbol': 'SNOW'
  }
}

About

Quickfin is a Python module providing instant access to live and historical stock market price data, automated Plotly data visualization generators and a data catalog for referencing equities, stock symbols, sector, and industry information.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages