Developer
€9 / mo
Perfect for testing and small projects.
-
5 Fixed Assets OnlyAAPL, EUR/GBP, TRX, DJ30, Silver
- 1 Update / 24h
- 300 API Calls / mo
- Sentiment & Volatility
- Sector Trend
Pro Trader
€39 / mo
Decision support & analysis.
- All 200+ Assets Included
- Max 2 Updates / Day
- 2,500 API Calls / mo
- Directional Signals
- Momentum Score
- Technical Indicators
Enterprise
Custom
Institutional grade forecasting & data.
- Unlimited Calls (Fair Use)
- Price Forecasts (Low/Mid/High)
- Informative Sells (Insider Data)
- Market Correlations
- Dedicated Support
API Response Example
GET https://api.tradegpt.app/v1/analysis?symbol=NVDA
{
"symbol": "NVDA",
"timestamp": "2026-05-21T14:30:00Z",
"signal": "STRONG_BUY",
"ai_confidence": 0.92,
"metrics": {
"sentiment": {
"score": 85,
"mood": "Extreme Greed"
},
"momentum": 9.4,
"volatility_hv90": 45.2
},
"sector": {
"name": "Semiconductors & AI",
"sector_sentiment": "Bullish"
},
"insider_sells": {
"current_value": "$450K",
"last_date": "2026-05-15",
"max_sell": "$1.2M",
"transactions": 4,
"interpretation": "Normal Activity (Tax/Routine)"
},
"price_forecast": {
"horizon": "14 days",
"low_est": 128.50,
"mid_est": 135.00,
"high_est": 142.20
},
"correlations": [
{ "pair": "BTC/USD", "score": 0.78 },
{ "pair": "ETH/USD", "score": 0.75 },
{ "pair": "TRX/USD", "score": 0.42 },
{ "pair": "AMD", "score": 0.89 },
{ "pair": "SMH", "score": 0.95 }
]
}
import requests
url = "https://api.tradegpt.app/v1/analysis"
headers = {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
}
params = {
"symbol": "NVDA"
}
try:
response = requests.get(url, headers=headers, params=params)
response.raise_for_status()
data = response.json()
print(f"Signal: {data['signal']}")
print(f"Forecast High: {data['price_forecast']['high_est']}")
except requests.exceptions.RequestException as e:
print(f"Error: {e}")
const url = "https://api.tradegpt.app/v1/analysis?symbol=NVDA";
async function fetchAnalysis() {
try {
const response = await fetch(url, {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
});
if (!response.ok) throw new Error(`HTTP error! status: ${response.status}`);
const data = await response.json();
console.log("Signal:", data.signal);
console.log("Forecast High:", data.price_forecast.high_est);
} catch (error) {
console.error("Error fetching data:", error);
}
}
fetchAnalysis();
Our API provides comprehensive market intelligence. The signal and forecast fields are generated by our proprietary AI algorithm trained on millions of data points.
Read Full Documentation →