Our AI analyzes each holding using technical indicators, fundamentals, and market trends to generate SELL/HOLD recommendations with confidence scores.
- Open Telegram and search for our bot (loading...)
- Press Start (or send
/start) - The bot will reply with your Chat ID — copy it
- Paste it below and click Send Test Message
import { PortfolioApiClient } from '@portfolio-analyzer/sdk';
const client = new PortfolioApiClient({
baseURL: 'http://YOUR_HOST:8000/api/v1'
});
await client.login('user@example.com', 'password');
const summary = await client.getPortfolioSummary();
const analysis = await client.runAnalysis({ days_history: 90 });