Simulate Curve pools
Project description
Curvesim
Curvesim simulates Curve finance pools with optimal arbitrageurs trading against them. It's primary use is to determine optimal amplitude (A) and fee parameters given historical price and volume feeds.
Dependencies:
The maintainers use Python 3.8 or above, but 3.11 is not yet supported. The code is likely fine for 3.6 and 3.7 but not officially supported.
Primary package dependencies: scipy, numpy, pandas, Web3, matplotlib, requests, gmpy2
When working on the codebase, to avoid dependency issues it is recommended to use the included requirements.txt
file in a Python virtual environment (venv
).
Documentation
Check out the full documentation at https://curvesim.readthedocs.io/
Licensing
Portions of the codebase are authorized derivatives of code owned by Curve.fi (Swiss Stake GbmH). These are the vyper snippets used for testing (test/fixtures/curve
) and the python code derived from them (curvesim/pool/stableswap
); there are copyright notices placed appropriately. The rest of the codebase has an MIT license.
Basic Use: Autosim
The autosim() function simulates existing Curve pools with a range of A and/or fee parameters. The function fetches pool properties (e.g., current pool size) and 2 months of price/volume data, runs multiple simulations in parallel, and saves results plots to the "results" directory.
Curve pools from any chain supported by the Convex Community Subgraphs can be simulated directly by inputting the pool's address or symbol. For factory pools, the pool and LP token use the same symbol. For earlier pools, we use the LP token symbol.
Example:
For example, to simulate 3pool with the default configuration, you could use either its address or the '3crv' LP token symbol (both are case-insensitive):
import curvesim
res = curvesim.autosim("0xbEbc44782C7dB0a1A60Cb6fe97d0b483032FF1C7")
res = curvesim.autosim("3crv")
To simulate pools on chains other than Ethereum, use the "chain" argument:
import curvesim
res = curvesim.autosim("2crv", chain="arbitrum")
Results:
Plots of the results will be saved to the "results/poolname" (e.g., pools/3crv) directory. The output dictionary, "res", contains pandas dataframes for all of the data plotted in the figures:
- ar: annualized returns
- bal: balance parameter over time, bal=1 when in perfect balance, and bal=0 when all holdings are in 1 coin
- pool_value: time series of pool's value (based on virtual price)
- depth: time series of price depth, averaged across pool's coins
- volume: time series of pool volume
- log_returns: log returns over time
- err: time series of absolute price errors, (dy-fee)/dx - p, summed accros coin pairs
- x: time series of pool holdings
- p: time series of pool precisions (incl. basepool virtual price and/or RAI redemption price)
Customizing Simulation Parameters
By default, pools are simulated using:
- on-chain or Curve Subgraph data about the pool
- a broad range of A (16 values, 64 to 11,585) and fee (5 values, 0.02 to 0.06%) values
- CoinGecko price/volume data
- 4 parallel threads
However, all of these can be altered using optional keyword arguments.
Custom A and/or Fee Ranges
Custom A and fee ranges can be specified using the "A" and "fee" arguments. Inputs must be lists or numpy arrays containing lists:
import curvesim
import numpy as np
#Specify A values:
res = curvesim.autosim('3crv', A=range(1000,2001,100))
#Specify fees (0.03% and 0.04% with 10 decimal precision):
res = curvesim.autosim('3crv', fee=[3000000, 4000000])
#Specify custom A range and 0.03% fee
#Note that single fee must still be a list
res = curvesim.autosim('3crv', A=range(1000,2001,100), fee=3000000)
Additionally, a small number of A/fee values (2 each) can be set for testing purposes:
res = curvesim.autosim('3crv', test=True)
Overriding Simulation Parameters
The following parameters are automatically specified by autosim(), but can be overridden with keyword arguments:
- D: total deposit size; default: fetched from on-chain data
- vol_mult: multiplied by market volume to produce trade size limits; default: computed from Curve Subraph data (see Volume Limits for details)
- feemul: fee multiplier used in dynamic fee pools; default: specified in poolDF_*.csv
import curvesim
#Simulate 3pool assuming total deposit of $10B, fee = 0.03%
res = curvesim.autosim('3crv', D=10000000000, fee=3000000)
#For metapools, specifying D effects the deposit in the metapool, but not the basepool
#Simulate USDN metapool assuming total deposit of $1B, fee = 0.03%
res = curvesim.autosim('usdn3crv', D=1000000000, fee=3000000)
#Simulate 3pool, limiting volume to 75% of market volume, fee = 0.03%
#Note: it is not reccomended to adjust this parameter, try vol_mode instead (see below)
res = curvesim.autosim('3crv', vol_mult=.75, fee=3000000)
#Simulate hypothetical 3pool with dynamic fee like AAVE pool, fee = 0.03%
res = curvesim.autosim('3crv', feemul=2*10**10, fee=3000000)
Volume Limits
To approximate realistic market conditions, the "vol_mult" argument is used to limit trade volume at each timepoint in the simulation. By default (vol_mode=1), vol_mult is simply the expected proportion of market volume that goes through the Curve pool (e.g., monthly pool volume / monthly price feed volume). At each timepoint, vol_mult is multiplied by the each coin-pair's market volume to produce a volume limit for each pair, thereby appropriately scaling trade volume while retaining natural volume dynamics. For metapools, vol_mult is computed seperately for the base pool and meta-pool.
In some cases, it may be helpful to limit trade volume differently. In particular, for new coins with little volume for some (but not all) pairs included in the pool, more robust simulations can be achieved by assuming equal volumes across trading pairs. We therefore provide three volume-limiting modes (vol_mode):
- vol_mode = 1: limits trade volumes proportionally to market volume for each pair (default)
- vol_mode = 2: limits trade volumes equally across pairs
- vol_mode = 3: mode 2 for trades with meta-pool asset, mode 1 for basepool-only trades
We reccomend using the default vol_mode 1 in most cases. However, if that returns noisy/uninterpretable results, it may be worth trying mode 2 (for normal pools) or mode 3 (for meta-pools).
Data Sources
The "src" argument can be used to choose between 3 different data sources:
- src = "coingecko": CoinGecko API (free); default
- src = "nomics": Nomics API (paid); set
NOMICS_API_KEY
as env variable or in.env
file. - src = "local": local data stored in the "data" folder
Note on CoinGecko vs. Nomics Data
While Nomics provides 30-minute-interval data for each specific coin-pair, CoinGecko provides prices per coin in 1-hour intervals. Each coin's price is computed relative to all its trading pairs and converted to a quote currency (e.g., USD), with volume summed across all trading pairs. Therefore, market volume taken from CoinGecko is often much higher than one can expect for a specific coin-pair. This issue is largely ameloriated by our volume limiting approach, with CoinGecko results typically mirroring Nomics results qualitatively, but it should be noted that CoinGecko data may be less reliable than Nomics data for certain simulations.
For comparison, compare 3pool_cg and 3pool_nomics results in the pools/demo direectory.
Technical Parameters
Additionally, one can specify:
- ncpu: number of CPUs to use for parallel processing (default: all cores); for use with profilers, e.g.
cProfile
, usencpu=1
. - days: the number of days worth of data to use in the simulation (default: 60)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for curvesim-0.3.0a2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8df5fd7b98ba69dd3fc60f29862437cc778873994e7608644122583d54b9596c |
|
MD5 | 5cf29481979ae0245185d5d631d16110 |
|
BLAKE2b-256 | 83b474372331b7940867ade667a89f5031e04d8a5871142a4ef6a7a594a8403e |