Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
6327eec
Uploading the files to start working with.
tkukuljan Oct 31, 2022
bcebf2d
Finsihing with the second video, up to some corrections coming up.
tkukuljan Nov 2, 2022
2c3433a
Finishing the notebook for the third video.
tkukuljan Nov 3, 2022
3bd2c1e
Work on readme
tkukuljan Nov 4, 2022
7685d20
Merge branch 'develop' into present_value_series
tkukuljan Nov 4, 2022
e37ebb4
some commit
tkukuljan Nov 4, 2022
6fb34bd
Updating to the newest calculation engine, updating readme.
tkukuljan Nov 4, 2022
d5de199
Merge branch 'develop' of https://github.com/Systemorph/IFRS17Calcula…
Nov 10, 2022
98c8450
simpler names + no mandatory accidentYear
Nov 10, 2022
ac33c76
better
Nov 10, 2022
a978edf
fix Application Message
Nov 10, 2022
6a57d76
better x2
Nov 10, 2022
e5edd00
compute discount and cumulate
Nov 10, 2022
8f55f5d
implement feedback
Nov 11, 2022
97b0195
improve overall
Nov 15, 2022
f075b90
aoc configuration
Nov 15, 2022
a6ca57d
better importers
Nov 15, 2022
496b9e3
reset and initialize only once
Nov 15, 2022
a05535d
Merge branch 'develop' of https://github.com/Systemorph/IFRS17Calcula…
Nov 15, 2022
861292a
solve remaining merge conflict
Nov 16, 2022
12079b5
revisions for signs + new overview
Nov 16, 2022
f11568a
metadata + fix importers validate datanode
Nov 16, 2022
7df3451
Merge branch 'develop' of https://github.com/Systemorph/IFRS17Calcula…
Nov 16, 2022
35b25f2
extra type + utils reports
Nov 17, 2022
1de8da0
implement all feedback
Nov 18, 2022
b5a3d08
Merge branch 'develop' of https://github.com/Systemorph/IFRS17Calcula…
Nov 18, 2022
9e8bfe9
updated links YT
Nov 18, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added PresentValueSeries/CF_CH_2021_12.xlsx
Binary file not shown.
Binary file added PresentValueSeries/CF_DE_2021_12.xlsx
Binary file not shown.
Binary file added PresentValueSeries/CF_DE_2022_12.xlsx
Binary file not shown.
Binary file added PresentValueSeries/Cashflows.xlsx
Binary file not shown.
Binary file added PresentValueSeries/DataNodes.xlsx
Binary file not shown.
Binary file added PresentValueSeries/DataNodes_CH.xlsx
Binary file not shown.
Binary file added PresentValueSeries/DataNodes_DE.xlsx
Binary file not shown.
Binary file added PresentValueSeries/Dimensions.xlsx
Binary file not shown.
Binary file added PresentValueSeries/Images/PvFlowchart.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PresentValueSeries/Images/PvOverview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PresentValueSeries/Images/PvWaterfallChart.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PresentValueSeries/Images/Systemorph_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PresentValueSeries/Images/VanessaAndrea.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
96 changes: 96 additions & 0 deletions PresentValueSeries/InitializeData.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
{
"metadata": {
"authors": [],
"kernelspec": {
"display_name": "Formula Framework",
"language": "C#",
"name": "C#"
},
"language_info": {
"file_extension": ".cs",
"mimetype": "text/plain",
"name": "C#"
},
"toc-autonumbering": "True",
"toc-showcode": "False",
"toc-showmarkdowntxt": "False",
"toc-showtags": "False"
},
"nbformat": 4,
"nbformat_minor": 5,
"cells": [
{
"cell_type": "markdown",
"source": [
"<p style=\"font-weight:bold;\"> <span style=\"font-size: 36px\"> Initialize Dimensions </span> </p>"
],
"metadata": {},
"execution_count": 0,
"outputs": []
},
{
"cell_type": "markdown",
"source": [
"---"
],
"metadata": {},
"execution_count": 0,
"outputs": []
},
{
"cell_type": "code",
"source": [
"await Import.FromFile(\"Dimensions.xlsx\")",
"\n .WithType<ReportingNode>() .WithType<AocType>() .WithType<DeferrableAmountType>()",
"\n .WithType<AmountType>() .WithType<Scenario>() .WithType<LiabilityType>()",
"\n .WithType<LineOfBusiness>() .WithType<EstimateType>() .WithType<EconomicBasis>()",
"\n .WithType<Currency>() .WithType<PnlVariableType>() .WithType<BsVariableType>()",
"\n .WithType<Novelty>() .WithType<Profitability>() .WithType<OciType>()",
"\n .WithType<ValuationApproach>() .WithType<RiskDriver>() .WithType<ProjectionConfiguration>() ",
"\n .WithType<ExchangeRate>()",
"\n .WithTarget(DataSource)",
"\n .ExecuteAsync()"
],
"metadata": {},
"execution_count": 0,
"outputs": []
},
{
"cell_type": "code",
"source": [
"await Import.FromFile(\"Dimensions.xlsx\").WithFormat(ImportFormats.AocConfiguration).WithTarget(DataSource).ExecuteAsync()"
],
"metadata": {},
"execution_count": 0,
"outputs": []
},
{
"cell_type": "code",
"source": [
"await Import.FromFile(\"DataNodes.xlsx\").WithFormat(\"DataNode\").WithTarget(DataSource).ExecuteAsync()"
],
"metadata": {},
"execution_count": 0,
"outputs": []
},
{
"cell_type": "code",
"source": [
"Workspace.Reset(x => x.ResetInitializationRules());",
"\nWorkspace.InitializeFrom(DataSource);"
],
"metadata": {},
"execution_count": 0,
"outputs": []
},
{
"cell_type": "code",
"source": [
""
],
"metadata": {},
"execution_count": 0,
"outputs": []
}
]
}
Loading