arkfunds-python

PyPI version Project Licence

A Python library for monitoring Ark Invest funds data.

Installation

Install the latest release from PyPI:

pip install arkfunds

Quickstart

from arkfunds import ETF, Stock

# ARK ETFs
etf = ETF("ARKK")

etf.profile()
etf.holdings()
etf.trades()
etf.news()

# Stocks
symbols = ["tsla", "coin", "tdoc"]
stock = Stock(symbols)

stock.profile()
stock.fund_ownership()
stock.trades()

stock.price()
stock.price_history()

Getting Started

See our Getting started guide in the documentation.

License

This project is licensed under the MIT license. Feel free to edit and distribute this template as you like.

See LICENSE for more information.