An open API service indexing awesome lists of open source software.

https://github.com/frefrik/arkfunds-python

🐍 Python library for monitoring and analyzing ARK Invest funds data with pandas.
https://github.com/frefrik/arkfunds-python

ark ark-funds ark-invest etf finance funds

Last synced: 5 months ago
JSON representation

🐍 Python library for monitoring and analyzing ARK Invest funds data with pandas.

Awesome Lists containing this project

README

          

arkfunds-python
===============

.. image:: https://badge.fury.io/py/arkfunds.svg
:target: https://badge.fury.io/py/arkfunds
:alt: PyPI version
.. image:: https://img.shields.io/github/license/frefrik/arkfunds-python
:target: LICENSE
:alt: Project Licence

A Python library for monitoring `Ark Invest `_ funds data.

Installation
------------

Install the latest release from `PyPI `_\ :

.. code-block:: console

pip install arkfunds

Quickstart
----------

.. code-block:: python

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.