product_feature
Data license: CC-BY-4.0 · Data source: bankproducts.info
4 rows where product_id = "ig:trading_account"
This data as json, CSV (advanced)
| id ▼ | product_id | feature_key | feature_value | note | source_page |
|---|---|---|---|---|---|
| ig:trading_account:pf:cloudflare_gate | IG Trading Account ig:trading_account | pricing_condition | ig.com Swiss pages return HTTP 403 (Cloudflare WAF gate) | ig.com/ch and ig.com/ch-en return 403 to all WebFetch/curl attempts. Same Cloudflare-WAF posture as Sygnum (atom #263). Only ig.com/uk help-portal pages were extractable; loaded with explicit "industry knowledge" caveats for Swiss-specific tier values. | |
| ig:trading_account:pf:fx_conversion_settings | IG Trading Account ig:trading_account | pricing_condition | FX conversion mode: instant (default) or daily-batched | Default: every transaction converted to base currency in real-time. Optional daily-batched at 10pm UK time (exposes to overnight FX risk; potentially lower total spread). | |
| ig:trading_account:pf:no_spread_bet_ch | IG Trading Account ig:trading_account | pricing_condition | Spread-bet products NOT offered to Swiss residents (UK-only) | Spread-betting is a UK-tax-advantaged product structure not available outside UK. Swiss IG clients trade CFDs only. | |
| ig:trading_account:pf:parent_lse | IG Trading Account ig:trading_account | pricing_condition | Parent group IG Group plc listed on LSE (IGG.L) | IG Bank S.A. is Swiss FINMA subsidiary; parent IG Group plc is FTSE 250-listed. Structural stability via parent market-cap. |
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);