product_feature
Data license: CC-BY-4.0 · Data source: bankproducts.info
3 rows where product_id = "saxo:trading_classic"
This data as json, CSV (advanced)
| id ▼ | product_id | feature_key | feature_value | note | source_page |
|---|---|---|---|---|---|
| saxo:trading_classic:pf:arr_benchmarks | Saxo Classic saxo:trading_classic | pricing_condition | Alternative Reference Rates (ARRs): SARON/SOFR/ESTR/SONIA per currency | 27-currency benchmark mapping per the commissions-charges-and-margin-schedule page. CHF = SARON ACT/360; USD = SOFR; EUR = ESTR; GBP = SONIA. Floor at 0%. | |
| saxo:trading_classic:pf:no_inactivity | Saxo Classic saxo:trading_classic | pricing_condition | No inactivity fee | Saxo explicitly states no inactivity fee — competitive vs Swissquote and Dukascopy which both have inactivity surcharges. | |
| saxo:trading_classic:pf:tier_system | Saxo Classic saxo:trading_classic | pricing_condition | 3-tier account system: Classic / Platinum / VIP (via Saxo Rewards) | Eligibility for Platinum + VIP via trading volume + account balance. Custody fees decline by ~3 bps per tier (0.15 → 0.12 → 0.09%). |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE product_feature (
id TEXT PRIMARY KEY,
product_id TEXT NOT NULL REFERENCES product(id),
feature_key TEXT NOT NULL, -- withdrawal_limit_free, notice_period, daily_limit, monthly_limit,
-- interest_late_payment, max_balance, included_services, ...
feature_value TEXT,
note TEXT,
source_page INTEGER
);
CREATE INDEX idx_product_feature_product ON product_feature(product_id);
CREATE INDEX idx_product_feature_key ON product_feature(feature_key);