源文件:research/quant_digests/2026-04-25_1152_crossvenue-contango-shell.md
这次看的是 2026 GitHub repo sueun-dev / crypto-market-neutral-platform。表面上它更像“韩国上币溢价 + 海外对冲平台”,但对我们 desk 更值钱的读法不是跨境转币,而是先把里面那条 overseas-only cross-venue contango shell 单独拆出来:跨所找最便宜 spot、最贵 perp,满足阈值就做 delta-neutral 收敛。
这份仓最值得留下来的不是“韩国溢价故事”,而是:它把 cross-venue spot-perp contango capture 写成了可执行的完整策略壳;但当前默认 PRICE_DIFF_THRESHOLD = 0.15% 很可能还没厚到能稳定覆盖四腿费用与滑点,所以 first verdict 的第一件事不是回测收益,而是先做 honest fee ladder。
不是靠宏大叙事,而是直接把可交易规则写死在配置和流程里:ENTRY_AMOUNT = 100、MAX_ENTRIES = 40、PRICE_DIFF_THRESHOLD = 0.0015、SLEEP_SEC = 3、FUTURES_LEVERAGE = 1,并且显式写了 negative funding veto、现货/永续腿数量对齐、自动/手动模式、真实交易所费率表与退出流程。
cheapest spot + richest perp,价差超过阈值才进;100 USDT、最多 40 次分批;1x futures、delta-neutral 对齐、负 funding 尽量回避;3s 轮询;0.15% = 15 bps 的 admission,放在 cross-venue 四腿交易里并不宽;config.py 费率粗看,Bybit spot taker 10 bps + Gate futures taker 5 bps,单次开仓就已接近 15 bps;31 ~ 50 bps+(还没含滑点、转账、库存等待),说明它更像 maker-first / event-driven / premium-enhanced 的 raw alpha 壳,而不是默认 taker 化就能跑的免费午餐。它补的是我们 raw alpha 素材池里一条很实用的 cross-venue relative-value 支线,而且和已有“同所 basis fade / funding carry”不完全一样:
1m / 3m / 5m 的完整最小实验。1x futures、分批建仓、现货/永续数量精确对齐、优先 maker / 低滑点 venue1m,再下钻到 3s~10sBTC / ETH / SOL,每 3s~10s 抓一次三所 spot 与 perp 报价;best_perp_bid / best_spot_ask - 1 - explicit_fees;15 bps,而是分三档:15 / 30 / 45 bps;<= 0、或 30/60m time stop;fee-after positive snapshot ratio 与 gross/net bps per trade;0.15% 改成 fee-after threshold,而不是毛价差阈值。maker/taker 四象限回测:maker-maker / maker-taker / taker-maker / taker-taker。negative funding veto 升级成明确 router:只有 spread edge > fees + expected funding drag 才进。sueun-dev (2026), crypto-market-neutral-platform. Repo URL: <https://github.com/sueun-dev/crypto-market-neutral-platform>README.md, src/overseas_exchange_hedge/config.py, src/overseas_exchange_hedge/overseas/price_analyzer.py, src/overseas_exchange_hedge/overseas/trade_executor.py