A Python library for monitoring Ark Invest funds data.
Install the latest release from PyPI:
pip install arkfunds
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()
See our Getting started guide in the documentation.
This project is licensed under the MIT license. Feel free to edit and distribute this template as you like.
See LICENSE for more information.