Skip to main content

Framework for creating new Uniswap V3 strategies

Project description

SDK for creating new strategies on Uniswap V3

git clone https://github.com/mellow-finance/mellow-strategy-sdk.git
cd mellow-strategy-sdk
python3 -m venv .venv
source .venv/bin/activate
pip install poetry
poetry install

or

python3 -m venv .venv
source .venv/bin/activate
pip install mellow_strategy_sdk

Getting Started

Import

from mellow_sdk.primitives import Pool, Token, Fee
from mellow_sdk.data import RawDataUniV3
from mellow_sdk.strategies import UniV3Passive
from mellow_sdk.backtest import Backtest
from mellow_sdk.viewers import RebalanceViewer, UniswapViewer, PortfolioViewer
from mellow_sdk.positions import BiCurrencyPosition, UniV3Position

Choose a pool

A typical notebook would start with downloading and preparing data for a specific pool. Let’s choose WBTC/WETH, fee 0.3% pool.

pool = Pool(Token.WBTC, Token.WETH, Fee.MIDDLE)

Get data

Аt the first run you need to download the data

data = RawDataUniV3(pool, 'data', reload_data=False).load_from_folder()

Use implemented strategy

univ3_passive = UniV3Passive(
    lower_price=data.swaps['price'].min() - 1,
    upper_price=data.swaps['price'].max() + 1,
    pool=pool,
    gas_cost=0.,
    name='passive'
)

Backtest

Next step is to run backtest using your strategy and data

bt = Backtest(univ3_passive)
portfolio_history, rebalance_history, uni_history = bt.backtest(data.swaps)

Visualize

Next visualize results

rv = RebalanceViewer(rebalance_history)
uv = UniswapViewer(uni_history)
pv = PortfolioViewer(portfolio_history, pool)

# Draw portfolio stats, like value, fees earned, apy
fig1, fig2, fig3, fig4, fig5, fig6 = pv.draw_portfolio()

# Draw Uniswap intervals
intervals_plot = uv.draw_intervals(data.swaps)

# Draw rebalances
rebalances_plot = rv.draw_rebalances(data.swaps)

# Calculate df with portfolio stats
stats = portfolio_history.calculate_stats()
intervals_plot.show()
https://raw.githubusercontent.com/mellow-finance/mellow-strategy-sdk/main/examples/getting_started_intervals.png
rebalances_plot.show()
https://raw.githubusercontent.com/mellow-finance/mellow-strategy-sdk/main/examples/getting_started_rebalances.png
fig2.show()
https://raw.githubusercontent.com/mellow-finance/mellow-strategy-sdk/main/examples/getting_started_fig2.png
fig4.show()
https://raw.githubusercontent.com/mellow-finance/mellow-strategy-sdk/main/examples/getting_started_fig4.png
fig6.show()
https://raw.githubusercontent.com/mellow-finance/mellow-strategy-sdk/main/examples/getting_started_fig6.png

Congratulations! Now you have the results of your strategy backtest on the real UniV3 data!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mellow_strategy_sdk-0.1.1-py3-none-any.whl (26.0 kB view details)

Uploaded Python 3

File details

Details for the file mellow_strategy_sdk-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for mellow_strategy_sdk-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 cefc9c7f8cd4c4af46ec4df8d0f62fe67fee6deebd6e296318ad626cce2d4f9c
MD5 fb9c718f33704642cd32bea1049a2806
BLAKE2b-256 c52593a041852e141db8be5b95865e680ac7886144bd94f9381a2c2750a861da

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page