v1.18.0
Feature
- fetch: Add new RealT fetch source (#106) (
ca00549
) by @nmathey⚠️ Some RealT investments may not be correctly fetched due to name mismatch issues, see #118 for a pending fix
Usage
Finalynx can now fetch your investments from RealT with your wallet address. To activate it, add the following to your_config.py
:
from finalynx.fetch.source_realt import SourceRealT
from finalynx import ...
portfolio = Portfolio(...)
assistant = Assistant(portfolio)
assistant.add_source(SourceRealT("0x123ABC_MY_REALT_TOKEN"))
assistant.run()
Then, choose which source(s) to enable when launching Finalynx (finary
and/or realt
available today):
python assistant_config.py --sources="finary,realt"
To save your preferences, change the following line in your_config.py
:
assistant = Assistant(portfolio, ..., active_sources=["finary", "realt"])