🔄 Recalculate Suitability Scores

📊 What This Tool Does

This tool recalculates Account Suitability Scores for all stocks in your portfolio. Each stock gets scored from 0-100 for three different account types:

💡 Why This Is Helpful

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.

⚠️ What to Expect

Ready to recalculate?

Or use one of these methods:

Method 1: Browser Console

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));

Method 2: cURL (Command Line)

curl -X POST https://invest.botgui.de/api/calculate_suitability.php \
  -H 'Content-Type: application/json' \
  -d '{"symbols": []}'

Method 3: Direct Link (GET)

Click here to run recalculation