Binance Trade Jury
Use this skill to review a Binance trade thesis before it becomes a real position.
Public endpoints:
- - Review API: INLINECODE0
- Share image: INLINECODE1
When to use it
- - The user wants a second opinion on a Binance trade idea.
- The user asks whether a long or short thesis is worth taking.
- The user wants a verdict backed by Binance market data instead of generic chat.
- The user wants a clearer entry, invalidation, and no-chase plan.
- The user wants a verdict card or social post for a reviewed thesis.
Workflow
- 1. Extract the trade symbol. Accept either
BTC or BTCUSDT. - Extract the side as
LONG or SHORT. If the user does not specify, default to LONG. - Extract the full thesis text. If the user gives no thesis, ask for it.
- Optionally extract bankroll in USD. If none is given, send
null. - Run:
CODEBLOCK0
- 6. Base the answer on the returned JSON. The most important fields are:
-
verdict
-
score
-
headline
-
summary
-
jurors
-
concerns
-
approvalConditions
-
playbook
-
shareText
- 7. If the user wants a share card, build a payload with:
-
verdict
-
score
-
symbol
-
side
-
headline
-
summary
-
primaryJuror
-
primaryConcern
- INLINECODE25
Then URL-encode the JSON and append it to:
CODEBLOCK1
Output guidance
- - Lead with the verdict and why the bench reached it.
- Quote the three jurors in short form when useful.
- Keep the playbook concrete: starter, add, invalidation, no-chase, and risk cap.
- Do not invent exchange-private data or portfolio permissions. This skill uses Binance public market data only.
- If the API fails, surface the error and suggest retrying with a cleaner symbol or tighter thesis.
技能名称: binance-trade-jury
详细描述:
币安交易陪审团
使用此技能在币安交易策略成为实际持仓前对其进行审查。
公共端点:
- - 审查API:https://binance-trade-jury.vercel.app/api/trade-jury
- 分享图片:https://binance-trade-jury.vercel.app/api/trade-jury/share-image
使用场景
- - 用户希望就某个币安交易想法获得第二意见。
- 用户询问某个多头或空头策略是否值得执行。
- 用户希望获得基于币安市场数据而非泛泛之谈的裁决。
- 用户希望获得更清晰的入场点、失效条件和放弃追仓计划。
- 用户希望获得经过审查策略的裁决卡片或社交分享文案。
工作流程
- 1. 提取交易品种。接受BTC或BTCUSDT格式。
- 提取方向为LONG或SHORT。若用户未指定,默认设为LONG。
- 提取完整的策略文本。若用户未提供策略,则要求其提供。
- 可选提取以美元计价的资金规模。若未提供,则发送null。
- 执行:
bash
curl -sS -X POST https://binance-trade-jury.vercel.app/api/trade-jury \
-H Content-Type: application/json \
-d {symbol:<品种>,side:,thesis:<策略>,bankrollUsd:null}
- 6. 基于返回的JSON进行回答。最重要的字段包括:
- verdict(裁决)
- score(评分)
- headline(标题)
- summary(摘要)
- jurors(陪审员意见)
- concerns(担忧事项)
- approvalConditions(批准条件)
- playbook(操作手册)
- shareText(分享文案)
- 7. 若用户需要分享卡片,构建包含以下内容的数据包:
- verdict(裁决)
- score(评分)
- symbol(品种)
- side(方向)
- headline(标题)
- summary(摘要)
- primaryJuror(主审陪审员)
- primaryConcern(主要担忧)
- generatedAt(生成时间)
然后对JSON进行URL编码并追加至:
bash
https://binance-trade-jury.vercel.app/api/trade-jury/share-image?payload=
输出指南
- - 以裁决结果及评审团达成该结论的理由作为开头。
- 在适当时简要引用三位陪审员的意见。
- 保持操作手册具体化:初始仓位、加仓、失效条件、放弃追仓及风险上限。
- 不得编造交易所私有数据或投资组合权限。本技能仅使用币安公开市场数据。
- 若API调用失败,需显示错误信息并建议用户使用更清晰的品种或更严谨的策略重试。