53 lines
1.2 KiB
TOML
53 lines
1.2 KiB
TOML
|
|
[general]
|
||
|
|
mode = "paper"
|
||
|
|
assets = ["BTC", "ETH", "SOL"]
|
||
|
|
timeframes = ["5M", "15M"]
|
||
|
|
log_level = "INFO"
|
||
|
|
starting_balance = 500.0
|
||
|
|
|
||
|
|
[strategy.temporal_arb]
|
||
|
|
enabled = true
|
||
|
|
min_price_move_pct = 0.03 # 낮춤: 0.03%만 움직여도 평가 (원래 0.15%)
|
||
|
|
max_poly_entry_price = 0.65
|
||
|
|
min_edge = 0.05 # 낮춤: 5% 엣지에서 진입 (원래 20%)
|
||
|
|
exit_before_resolution_sec = 5
|
||
|
|
|
||
|
|
[strategy.sum_to_one]
|
||
|
|
enabled = true
|
||
|
|
min_spread_after_fee = 0.02
|
||
|
|
|
||
|
|
[strategy.spread_capture]
|
||
|
|
enabled = false
|
||
|
|
spread_target = 0.04
|
||
|
|
|
||
|
|
[risk]
|
||
|
|
max_position_per_market_usd = 5000
|
||
|
|
max_total_exposure_usd = 20000
|
||
|
|
max_daily_loss_usd = 2000
|
||
|
|
kelly_fraction_cap = 0.25
|
||
|
|
max_concurrent_positions = 6
|
||
|
|
|
||
|
|
[fees]
|
||
|
|
taker_fee_5m = 0.0156
|
||
|
|
taker_fee_15m = 0.03
|
||
|
|
|
||
|
|
[exchange.binance]
|
||
|
|
ws_url = "wss://stream.binance.com:9443/stream"
|
||
|
|
symbols = ["btcusdt", "ethusdt", "solusdt"]
|
||
|
|
|
||
|
|
[exchange.polymarket]
|
||
|
|
clob_url = "https://clob.polymarket.com"
|
||
|
|
gamma_url = "https://gamma-api.polymarket.com"
|
||
|
|
data_url = "https://data-api.polymarket.com"
|
||
|
|
ws_url = "wss://ws-subscriptions-clob.polymarket.com/ws/"
|
||
|
|
chain_id = 137
|
||
|
|
signature_type = 2
|
||
|
|
|
||
|
|
[notifications]
|
||
|
|
telegram_enabled = true
|
||
|
|
telegram_token = ""
|
||
|
|
telegram_chat_id = ""
|
||
|
|
notify_on_trade = true
|
||
|
|
notify_on_daily_summary = true
|
||
|
|
notify_on_error = true
|