Computes own-funds requirements for E-Money Institutions under EMD2 (2009/110/EC) and UK E-Money Regulations 2011. Calculates Methods A, B, and C per EMD2 Article 5, recommends the optimal method, and generates a comparison table with capital buffer guidance.
| Method | Basis | Calculated Amount | After Floor | After k-Multiplier | vs. Initial Capital Floor | Tag |
|---|
ⓘ EBA/GL/2021/03 recommends EMIs maintain a buffer above regulatory minimum to absorb operational shocks. A buffer of 20–30% above the calculated requirement is common in FCA supervisory expectations. The buffer does not reduce the regulatory minimum.
{
"name": "calculate_emi_capital_requirements",
"description": "Computes own-funds requirements for EMIs under EMD2/UK EMRs Methods A, B, and C.",
"inputSchema": {
"type": "object",
"properties": {
"method": { "type": "string", "enum": ["A","B","C"] },
"avg_outstanding_emoney":{ "type": "number", "description": "6-month avg e-money outstanding (GBP/EUR)" },
"relevant_indicator": { "type": "number", "description": "Net income / relevant indicator for Method B" },
"payment_volume": { "type": "number", "description": "Annual payment transaction volume for Method C" },
"multiplier": { "type": "number", "description": "k multiplier 0.8–1.2 (NCA discretion)" },
"jurisdiction": { "type": "string", "enum": ["UK","EU"] },
"existing_capital": { "type": "number" }
},
"required": ["method"]
},
"outputSchema": {
"type": "object",
"properties": {
"required_own_funds": { "type": "number" },
"selected_method": { "type": "string" },
"recommended_method": { "type": "string" },
"all_methods": { "type": "array" },
"capital_buffer_rec": { "type": "number" }
}
}
}