Goal
Add a fintech-oriented ProofPath demo for trading, broker, and market-operation APIs.
Why this matters
A valid broker API token, trading session, or websocket/API access does not automatically mean a valid financial action.
AI assistants and trading automation can propose actions that are syntactically valid but financially dangerous:
- placing an order outside approved scope;
- changing risk parameters;
- modifying broker account settings;
- triggering production trading action when only market inspection was requested;
- cancelling or replacing orders without approval;
- exporting account-sensitive data.
Core line:
Valid broker API access should not automatically mean valid trading action.
Demo concept
Create examples/trading-broker-gate/ with three safe simulated scenarios:
-
Market/account inspection
- Example: read-only market/account status.
- Expected ProofPath decision:
ACCEPT.
-
Trade placement without approval
- Example: production order placement without explicit approval.
- Expected ProofPath decision:
BLOCK.
-
Approved order cancellation or risk-reduction action
- Example: approved order cancellation or risk-reduction action.
- Expected ProofPath decision:
ACCEPT.
Suggested action scopes
trading.market.read
trading.account.read
trading.order.place
trading.order.cancel
trading.order.replace
trading.position.reduce
trading.risk.modify
trading.account.export
Deliverables
Acceptance criteria
- The demo is simulated and does not connect to a real broker.
- The demo does not provide trading advice.
- The repo does not claim ProofPath replaces broker permissions, exchange controls, user approval, or financial compliance systems.
- The demo clearly separates read-only inspection from high-risk financial actions.
Related
Goal
Add a fintech-oriented ProofPath demo for trading, broker, and market-operation APIs.
Why this matters
A valid broker API token, trading session, or websocket/API access does not automatically mean a valid financial action.
AI assistants and trading automation can propose actions that are syntactically valid but financially dangerous:
Core line:
Demo concept
Create
examples/trading-broker-gate/with three safe simulated scenarios:Market/account inspection
ACCEPT.Trade placement without approval
BLOCK.Approved order cancellation or risk-reduction action
ACCEPT.Suggested action scopes
Deliverables
examples/trading-broker-gate/README.md.Acceptance criteria
Related