Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ##########################################
- ### AMM Arbitrage strategy config ###
- ##########################################
- template_version: 2
- strategy: amm_arb
- # The following configuations are only required for the AMM arbitrage trading strategy
- # Connectors and markets parameters
- connector_1: balancer
- market_1: SAND-DAI
- connector_2: uniswap_v3
- market_2: SAND-BAT
- order_amount: 10.0
- # Minimum profitability target required to place an order
- # Expressed in percentage value, e.g. 1 = 1% target profit
- min_profitability: 1.0
- # A buffer for which to adjust order price for higher chance of the order getting filled.
- # This is important for AMM which transaction takes a long time where a slippage is acceptable rather having
- # the transaction get rejected. The submitted order price will be adjust higher (by percentage value) for buy order
- # and lower for sell order. (Enter 1 for 1%)
- market_1_slippage_buffer: 0.05
- # A buffer to add to the price to account for slippage when buying/selling on second connector market
- # (Enter 1 for 1%)
- market_2_slippage_buffer: 0.05
- # A flag (true/false), if true the bot submits both arbitrage taker orders (buy and sell) simultaneously
- # If false, the bot will wait for first exchange order filled before submitting the other order
- concurrent_orders_submission: true
- # Whether to use rate oracle on unmatched trading pairs
- # Set this to either True or False
- use_oracle_conversion_rate: true
- # The conversion rate for secondary quote asset value to primary quote asset value.
- # e.g. if primary quote asset is USD, secondary is DAI and 1 USD is worth 1.25 DAI, "
- # the conversion rate is 0.8 (1 / 1.25)
- secondary_to_primary_quote_conversion_rate: 1.0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement