home / bankproducts

Fees

One row per fee charged on a product. Every row carries a source_page reference to the original bank PDF. NULL amount means 'on request' (tailored pricing) or 'not published in current source'.

Data license: CC-BY-4.0 · Data source: bankproducts.info

9 rows where product_id = "dukascopy:forex_cfd" sorted by amount descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: amount, tier, valid_from (date)

id product_id bank_id fee_type label amount ▲ currency frequency tier channel note source_page valid_from access_tier
dukascopy:forex_cfd:commission_external_mgr Forex / Index / Commodity / Bond CFD dukascopy:forex_cfd Dukascopy Bank SA dukascopy transaction_commission Volume commission (external manager / attorney appointed) 100.0 USD per_txn     Maximum rate of USD 100 per USD 1M traded when client appoints an external manager.   2026-05-10 pro
dukascopy:forex_cfd:commission_tier1_other Forex / Index / Commodity / Bond CFD dukascopy:forex_cfd Dukascopy Bank SA dukascopy transaction_commission Volume commission (commodities/indices/crypto/bonds): < USD 5k equity 52.5 USD per_txn equity_lt_5k   USD 52.5 per USD 1M traded for commodities/indices/precious metals/crypto/bonds.   2026-05-10 pro
dukascopy:forex_cfd:commission_tier1_fx Forex / Index / Commodity / Bond CFD dukascopy:forex_cfd Dukascopy Bank SA dukascopy transaction_commission Volume commission (FX): < USD 5k equity 35.0 USD per_txn equity_lt_5k   USD 35 per USD 1M traded for currency pairs. Lower commission as equity/deposit/30-day volume increases.   2026-05-10 pro
dukascopy:forex_cfd:commission_tier5_other Forex / Index / Commodity / Bond CFD dukascopy:forex_cfd Dukascopy Bank SA dukascopy transaction_commission Volume commission (commodities etc.): >= USD 50k equity / >= USD 50M traded 27.0 USD per_txn equity_gte_50k       2026-05-10 pro
dukascopy:forex_cfd:commission_tier5_fx Forex / Index / Commodity / Bond CFD dukascopy:forex_cfd Dukascopy Bank SA dukascopy transaction_commission Volume commission (FX): >= USD 50k equity / >= USD 50M traded 18.0 USD per_txn equity_gte_50k   USD 18 per USD 1M traded. Bank-guarantee accounts default to this tier.   2026-05-10 pro
dukascopy:forex_cfd:commission_top_other Forex / Index / Commodity / Bond CFD dukascopy:forex_cfd Dukascopy Bank SA dukascopy transaction_commission Volume commission (commodities etc.): >= USD 3M equity / >= USD 3B traded 7.5 USD per_txn equity_gte_3m       2026-05-10 pro
dukascopy:forex_cfd:swap_free_surcharge_metals Forex / Index / Commodity / Bond CFD dukascopy:forex_cfd Dukascopy Bank SA dukascopy transaction_commission Swap-free account surcharge (precious metals) 7.5 USD per_txn     USD 7.5 per USD 1M for precious metals on swap-free accounts.   2026-05-10 pro
dukascopy:forex_cfd:commission_top_fx Forex / Index / Commodity / Bond CFD dukascopy:forex_cfd Dukascopy Bank SA dukascopy transaction_commission Volume commission (FX): >= USD 3M equity / >= USD 3B traded 5.0 USD per_txn equity_gte_3m   Best published tier. USD 5 per USD 1M traded for currency pairs.   2026-05-10 pro
dukascopy:forex_cfd:swap_free_surcharge_fx Forex / Index / Commodity / Bond CFD dukascopy:forex_cfd Dukascopy Bank SA dukascopy transaction_commission Swap-free account surcharge (FX) 5.0 USD per_txn     USD 5 per USD 1M for currencies on swap-free accounts (in addition to standard volume commission).   2026-05-10 pro

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE fee (
    id          TEXT PRIMARY KEY,       -- zkb:privatkonto:account_mgmt
    product_id  TEXT NOT NULL REFERENCES product(id),
    bank_id     TEXT NOT NULL REFERENCES bank(id),  -- denormalized
    fee_type    TEXT NOT NULL,          -- standardized key
    label       TEXT,                   -- human-readable German label from PDF
    amount      REAL,                   -- NULL if text-only or varies
    currency    TEXT DEFAULT 'CHF',     -- CHF, EUR, USD, percent
    frequency   TEXT,                   -- monthly, annual, quarterly, per_txn, one_time, per_annum_pct
    tier        TEXT,                   -- for tiered pricing: "3rd card onwards", "vol:>250k", "member"
    channel     TEXT,                   -- ebanking, paper, counter, atm, app, post_office, all
    note        TEXT,                   -- conditions, fine print
    source_page INTEGER,
    valid_from  TEXT,
    access_tier TEXT NOT NULL DEFAULT 'free'  -- freemium gating; propagated from parent product
        CHECK (access_tier IN ('free', 'pro', 'business'))
);
CREATE INDEX idx_fee_product ON fee(product_id);
CREATE INDEX idx_fee_bank ON fee(bank_id);
CREATE INDEX idx_fee_type ON fee(fee_type);
CREATE INDEX idx_fee_category ON fee(fee_type, bank_id);
CREATE INDEX idx_fee_access_tier ON fee(access_tier);
Powered by Datasette · Queries took 127.013ms · Data license: CC-BY-4.0 · Data source: bankproducts.info