← スキル一覧に戻る

liquidity-depth-analyzer
by aiskillstore
liquidity-depth-analyzerは、other分野における実用的なスキルです。複雑な課題への対応力を強化し、業務効率と成果の質を改善します。
⭐ 102🍴 3📅 2026年1月23日
SKILL.md
name: liquidity-depth-analyzer description: "DEX liquidity analysis and slippage estimation for MEV trading. Use when implementing swaps, route selection, or position sizing. Triggers on: liquidity, slippage, price impact, depth, AMM math, Uniswap, Curve."
Liquidity Depth Analyzer
DEX liquidity analysis and slippage estimation for MEV trading.
When to Use
- Implementing swap execution
- Selecting optimal routes
- Sizing positions for trades
- Calculating price impact
- Validating arbitrage profitability
Workflow
Step 1: Check Liquidity Depth
Verify depth >= 3x trade size.
Step 2: Calculate Price Impact
Ensure impact < 0.5% (50 bps).
Step 3: Validate Profit After Slippage
Confirm profit survives slippage tolerance.
Core Rule
Never execute without knowing:
- Available liquidity at current price
- Price impact for your size
- Whether profit survives slippage
Key Formulas
price_impact_bps = |1 - (in/out) / spot| × 10000 minAmountOut = expected × (1 - slippage_bps / 10000)
Config
const config = {
max_price_impact_bps: 50, // 0.5%
max_slippage_bps: 100, // 1%
min_depth_multiplier: 3, // depth >= 3x trade
};
Abort Reasons
| Code | Action |
|---|---|
| NO_POOL | Find alternative route |
| LOW_DEPTH | Reduce size or split |
| HIGH_PRICE_IMPACT | Reduce size |
| LOW_PROFIT | Skip opportunity |
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
✓人気
GitHub Stars 100以上
+5
✓最近の活動
3ヶ月以内に更新
+5
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
レビュー
💬
レビュー機能は近日公開予定です
