LIVE

AI-Driven Investment Intelligence

Real-time technical analysis and portfolio optimization powered by advanced AI algorithms

📊 Loading portfolio data...

🔌 API Endpoints

Access real-time portfolio data programmatically

Portfolio Summary

GET https://doubtlessly.github.io/alt-port/portfolio_summary.json

Quick overview with key metrics and top recommendations

Complete Analysis

GET https://doubtlessly.github.io/alt-port/portfolio_analysis.json

Full technical analysis with all indicators and AI insights

Individual Symbol

GET https://doubtlessly.github.io/alt-port/symbols/{symbol}.json

Detailed analysis for specific cryptocurrency (e.g., /symbols/btc.json)

🔧 Usage Examples

# Python
import requests
data = requests.get('https://doubtlessly.github.io/alt-port/portfolio_summary.json').json()

# JavaScript
const response = await fetch('https://doubtlessly.github.io/alt-port/portfolio_summary.json');
const data = await response.json();