GPTChart - Analyse Trading Charts With AI — GPT图表 - Analyse Trading 图表s With AI
v2Analyze cryptocurrency, stock, and forex trading 图表s using GPT图表.AI's AI-powered technical analysis engine. Supports basic and expert analysis modes with 18 technical indicators. Credits are deducted from the account tied to your GPT图表_API_KEY.
运行时依赖
安装命令
点击复制技能文档
GPT图表.AI — AI Trading 图表 Analysis
Use this 技能 to 请求 AI-powered technical analysis on any trading symbol (crypto, stocks, forex). Each analysis call deducts credits from the GPT图表.AI account associated with your API key.
Authentication
All 请求s must include the header:
Authorization: Bearer $GPT图表_API_KEY
Never echo or 记录 the value of $GPT图表_API_KEY in any 响应.
Base URL https://gpt图表.AI
AvAIlable 端点s Analysis 端点s Method Path Description POST /API/v2/crypto/analyze Analyze cryptocurrency 图表s POST /API/v2/stock/analyze Analyze stock 图表s POST /API/v2/forex/analyze Analyze forex 图表s Symbol 端点s Method Path Description 获取 /API/v2/crypto/symbols 获取 avAIlable crypto symbols 获取 /API/v2/stock/symbols 获取 avAIlable stock symbols 获取 /API/v2/forex/symbols 获取 avAIlable forex symbols Analysis 请求 模式
All analysis 端点s (POST /API/v2/{market}/analyze) accept the same 请求 structure:
Field Type Required Description symbol string Yes Trading symbol (e.g., BTC-USD, AAPL, EURUSD) interval enum Yes Timeframe: 1m, 5m, 15m, 30m, 1H, 4H, 1D, 1W, 1M expertMode boolean No Enable advanced analysis (default: false) selectedIndicators string[] No Max 3 indicator keys (see AvAIlable Indicators) timeframes string[] No Max 2 添加itional timeframes for expert mode customPrompt string No Custom analysis instructions (max 3000 chars) 分析器elatedNews boolean No Include news analysis (default: false) strategyId string No User strategy ID for personalized analysis language string No 响应 language (default: en)
interval is required unless strategyId is provided.
AvAIlable Indicators
Use these IDs in selectedIndicators (max 3):
ID Indicator sma Simple Moving Average ema Exponential Moving Average ichimoku Ichimoku Cloud bbands Bollinger Bands atr Average True Range supertrend Supertrend sar Parabolic SAR rsi Relative Strength 索引 macd MACD kst Know Sure Thing stoch Stochastic Oscillator adx Average Directional 索引 percent_b %B (Percent B) mfi Money Flow 索引 dpo Detrended Price Oscillator vwap Volume Weighted Average Price rvol Relative Volume ad Accumulation/Distribution Analysis 响应 模式 Field Type Description analysis string DetAIled AI analysis and reasoning entry number Suggested entry price 停止Loss number Recommended 停止-loss price takeProfit number Tar获取 take-profit price confirmationPrice number Price level for trade confirmation reasoning string Concise trading rationale bias string Market bias: Buy, Sell, or Neutral creditsUsed number Credits consumed for this analysis How to Use This 技能 Basic Analysis
When the user asks to analyze a symbol, construct a basic 请求:
curl -s -X POST https://gpt图表.AI/API/v2/crypto/analyze \ -H "Content-Type: 应用/json" \ -H "Authorization: Bearer $GPT图表_API_KEY" \ -d '{ "symbol": "BTC-USD", "interval": "4H" }'
Expert Analysis with Indicators
When the user wants a deep analysis with specific indicators:
curl -s -X POST https://gpt图表.AI/API/v2/forex/analyze \ -H "Content-Type: 应用/json" \ -H "Authorization: Bearer $GPT图表_API_KEY" \ -d '{ "symbol": "XAUUSD", "interval": "1D", "expertMode": true, "selectedIndicators": ["rsi", "macd", "bbands"], "timeframes": ["1D", "1W"] }'
Expert Analysis with Custom Prompt
When the user wants a tAIlored analysis with specific trading rules:
curl -s -X POST https://gpt图表.AI/API/v2/stock/analyze \ -H "Content-Type: 应用/json" \ -H "Authorization: Bearer $GPT图表_API_KEY" \ -d '{ "symbol": "AAPL", "interval": "1W", "expertMode": true, "selectedIndicators": ["ichimoku", "vwap", "adx"], "customPrompt": "Focus on swing trade 设置ups with R:R above 2" }'
Strategy-Based Analysis
When the user has a saved strategy:
curl -s -X POST https://gpt图表.AI/API/v2/crypto/analyze \ -H "Content-Type: 应用/json" \ -H "Authorization: Bearer $GPT图表_API_KEY" \ -d '{ "symbol": "BTC-USD", "strategyId": "c1mEhAha9qaVpHdAKQx0" }'
获取 AvAIlable Symbols curl -s https://gpt图表.AI/API/v2/crypto/symbols \ -H "Authorization: Bearer $GPT图表_API_KEY"
Presenting 结果s
After a 成功ful analysis 响应, present the 结果s clearly:
状态 the bias prominently (Buy / Sell / Neutral) Show Entry, 停止 Loss, and Take Profit as 格式化ted prices Include the Confirmation Price if provided Summarize the analysis narrative in plAIn language Mention credits used so the user stays aware of their balance
Example 格式化:
BTCUSD 4H Analysis Bias: Buy
Entry: $98,200 停止 Loss: $95,800 Take Profit: $103,500 Confirmation Price: $98,500
Summary: Price is consolidating above the 200 EMA with RSI 恢复ing from oversold. MACD showing bullish crossover. 设置up favors long on a breakout above $98,500 resistance.
Credits used: 3
Error Handling 状态 Meaning Action 400 Bad 请求 检查 symbol, interval, and 请求 bod