From 8a095a99a8ec6f3895bd1c126ffff872832485b9 Mon Sep 17 00:00:00 2001 From: gina888666 Date: Fri, 29 May 2026 10:47:39 +0800 Subject: [PATCH] docs: clarify price/price_usd in portfolio activity and check-price unit in strategy create Co-Authored-By: Claude Sonnet 4.6 --- skills/gmgn-portfolio/SKILL.md | 3 ++- skills/gmgn-swap/SKILL.md | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/skills/gmgn-portfolio/SKILL.md b/skills/gmgn-portfolio/SKILL.md index c68b862..b1db2d1 100644 --- a/skills/gmgn-portfolio/SKILL.md +++ b/skills/gmgn-portfolio/SKILL.md @@ -233,7 +233,8 @@ The response has a `activities` array and a `next` cursor field for pagination. | `token.symbol` | Token ticker | | `token_amount` | Token quantity in this transaction | | `cost_usd` | USD value of this transaction | -| `price` | Token price in USD at time of transaction | +| `price` | Token price denominated in the quote token at time of transaction (e.g. price in SOL on Solana) | +| `price_usd` | Token price in USD at time of transaction | | `timestamp` | Unix timestamp of the transaction | | `next` | Pagination cursor — pass to `--cursor` to fetch the next page | diff --git a/skills/gmgn-swap/SKILL.md b/skills/gmgn-swap/SKILL.md index 804870f..8fa80a0 100644 --- a/skills/gmgn-swap/SKILL.md +++ b/skills/gmgn-swap/SKILL.md @@ -544,7 +544,7 @@ gmgn-cli order strategy create \ | `--quote-token` | Yes | all | Quote token contract address | | `--order-type` | Yes | all | Order type: `limit_order` | | `--sub-order-type` | Yes | all | Sub-order type: `buy_low` / `buy_high` / `stop_loss` / `take_profit` | -| `--check-price` | Yes | all | Trigger check price | +| `--check-price` | Yes | all | Trigger price in USD — the order fires when the token's USD price crosses this value | | `--amount-in` | No* | all | Input amount (smallest unit). Mutually exclusive with `--amount-in-percent` | | `--amount-in-percent` | No* | all | Input as percentage (e.g. `50` = 50%). Mutually exclusive with `--amount-in` | | `--limit-price-mode` | No | all | `exact` / `slippage` (default: `slippage`) |