Enter your password to access the Risk Appetite Profiler
🔒
Privacy Assurance. All figures you enter are used solely for calculation purposes. No information is saved or stored on any server. Everything stays on your device.
Every investor is different. This profiler maps your time horizon, loss tolerance, financial stability, and market psychology into a precise risk score — then matches you to the right funds.
🔴
Aggressive
Maximum growth. 5–10+ year horizon. High volatility tolerance.
🟡
Moderate
Balanced returns. 3–5 year horizon. Accepts moderate swings.
🟢
Conservative
Capital preservation. 1–3 years. Minimal risk tolerance.
Progress1 / 8
Admin Panel
🔐
Admin Login
Enter the admin password to manage fund recommendations and settings.
Incorrect password. Please try again.
Google Sheets Connection
Setup Guide (5 minutes):
1. Go to sheets.google.com → create a new spreadsheet → name it Axen Alpha Fund Data
2. Create two sheet tabs: Funds and Settings
3. In Funds tab, row 1 headers: profile | fund_num | name | manager | sc | fee | min | why
4. In Settings tab, set up rows 1–3 exactly:
Row 1: key | value
Row 2: public_password | Axen2026
Row 3: admin_password | AxenAdmin2026
5. Go to Extensions → Apps Script → paste the script below → click Deploy → New Deployment → Web App → Execute as: Me → Who has access: Anyone → Deploy → copy the URL
6. Paste the URL above → click Save URL
7. Click Save All to Google Sheets (on any fund tab) to push current data
Apps Script to paste (copy all): function doGet(e){const ss=SpreadsheetApp.getActiveSpreadsheet();const fs=ss.getSheetByName('Funds').getDataRange().getValues();const st=ss.getSheetByName('Settings').getDataRange().getValues();return ContentService.createTextOutput(JSON.stringify({funds:fs,settings:st})).setMimeType(ContentService.MimeType.JSON);}