Skip to content
/ marketflow Public template

Access to African, American, European and Asian market data for financial analysis, scientific study and to provide a decision-making basis to investors

License

Notifications You must be signed in to change notification settings

xgeosoft/marketflow

Repository files navigation

Asset Management Package

Access to African, American, European and Asian open market data for financial analysis, scientific study and to provide a decision-making basis to investors.

Installation

You can install this package using pip:

pip install marketflow

How to use marketflow

Import requirements

from marketflow.market_registry import MarketRegistry
from marketflow.market_ticker import MarketTickers
from marketflow.market_data import MarketData

Or simply with

from marketflow import MarketRegistry, MarketTickers, MarketData

Initialize the registry (to manage cache / stored data)

register = MarketRegistry()
# register.purge()   # Uncomment to clear existing registry data

Get available tickers for market (Ex : BRVM)

tickers = MarketTickers()
brvm_tickers = tickers.getTickers("BRVM")
print(brvm_tickers)

Download market data (example: BRVM, ticker BNBC.ci)

data = MarketData()
brvm_data = data.getData("BRVM", "all"])
boab_data = data.getData("BRVM", "BOAB"])
bicc_data = data.getData("BRVM", "BICC"])
print(brvm_data.head())

About

Access to African, American, European and Asian market data for financial analysis, scientific study and to provide a decision-making basis to investors

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages