This tool recalculates Account Suitability Scores for all stocks in your portfolio. Each stock gets scored from 0-100 for three different account types:
Suitability scores help you make smarter investment decisions by matching stocks to the right account types:
Scores are based on: P/E ratios, growth rates, dividend yields, financial health, DCF valuations, and insider trading activity.
Ready to recalculate?
Or use one of these methods:
fetch('/api/calculate_suitability.php', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ symbols: [] })
})
.then(r => r.json())
.then(data => console.log(data));
curl -X POST https://invest.botgui.de/api/calculate_suitability.php \
-H 'Content-Type: application/json' \
-d '{"symbols": []}'