├── .github └── workflows │ ├── python-app.yml │ └── python-publish.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG.md ├── CHANGELOG.rst ├── LICENSE ├── README.md ├── absbox ├── __init__.py ├── client test.ipynb ├── client.py ├── deal.py ├── examples │ ├── __init__.py │ ├── baseCase.py │ ├── mixAssetType.py │ └── triggerCase.py ├── exception.py ├── library.py ├── local │ ├── __init__.py │ ├── analytics.py │ ├── base.py │ ├── cf.py │ ├── chart.py │ ├── china.py │ ├── cmp.py │ ├── component.py │ ├── generic.py │ ├── interface.py │ ├── plot.py │ └── util.py ├── report.py ├── report_parser │ ├── __init__.py │ └── china.py ├── rootFinder.py ├── tests │ ├── __init__.py │ ├── benchmark │ │ ├── __init__.py │ │ ├── china │ │ │ ├── out │ │ │ │ ├── test01.json │ │ │ │ ├── test02.json │ │ │ │ ├── test03.json │ │ │ │ ├── test04.json │ │ │ │ ├── test05.json │ │ │ │ ├── test06.json │ │ │ │ └── test07.json │ │ │ ├── resp │ │ │ │ ├── test01.out.json │ │ │ │ ├── test02.out.json │ │ │ │ ├── test03.out.json │ │ │ │ ├── test04.out.json │ │ │ │ ├── test05.out.json │ │ │ │ └── test06.out.json │ │ │ ├── scenario │ │ │ │ ├── bmwRevolving.json │ │ │ │ ├── defaults01.json │ │ │ │ ├── loan_empty.json │ │ │ │ ├── mortgage_empty.json │ │ │ │ └── rates.json │ │ │ ├── test01.py │ │ │ ├── test02.py │ │ │ ├── test03.py │ │ │ ├── test04.py │ │ │ ├── test05.py │ │ │ ├── test06.py │ │ │ ├── test07.py │ │ │ ├── test08.py │ │ │ ├── test09.py │ │ │ ├── test10.py │ │ │ ├── test11.py │ │ │ ├── test12.py │ │ │ ├── test13.py │ │ │ ├── test14.py │ │ │ ├── test15.py │ │ │ ├── test16.py │ │ │ ├── test17.py │ │ │ ├── test18.py │ │ │ ├── test19.py │ │ │ ├── test20.py │ │ │ ├── test21.py │ │ │ ├── test23.py │ │ │ ├── test24.py │ │ │ └── test25.py │ │ └── us │ │ │ ├── arm_sample.py │ │ │ ├── float_bond.py │ │ │ ├── scenario │ │ │ ├── bmwRevolving.json │ │ │ ├── empty.json │ │ │ └── rates.json │ │ │ ├── stepup_sample.py │ │ │ ├── test01.py │ │ │ ├── test02.py │ │ │ ├── test03.py │ │ │ ├── test04.py │ │ │ ├── test05.py │ │ │ ├── test06.py │ │ │ ├── test07.py │ │ │ └── test08.py │ ├── clean_benchmark.sh │ ├── config.json │ ├── regression │ │ ├── __init__.py │ │ ├── assets.py │ │ ├── deals.py │ │ ├── pool.py │ │ └── test_main.py │ ├── releaseChecker.py │ ├── test_case.txt │ ├── test_nb_regression.py │ └── test_regression.py └── validation.py ├── docs ├── .DS_Store ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── .DS_Store │ ├── Hastructure.code-workspace │ ├── analytics.rst │ ├── api.rst │ ├── changelog.rst │ ├── conf.py │ ├── deal_sample │ ├── __init__.py │ ├── arm_sample.py │ ├── bondStepUp.py │ ├── book.py │ ├── conditionAgg.py │ ├── fee1.py │ ├── fireTrigger.py │ ├── float_bond.py │ ├── multi_pool.py │ ├── payPrinSeq.py │ ├── rateCap.py │ ├── resec.py │ ├── stepup_sample.py │ ├── structuring_sample.py │ ├── test01.py │ ├── test02.py │ ├── test03.py │ ├── test04.py │ ├── test05.py │ ├── test06.py │ ├── test07.py │ ├── test08.py │ ├── test09.py │ ├── test10.py │ ├── test11.py │ ├── test12.py │ ├── test13.py │ └── ysoc.py │ ├── faq.rst │ ├── files │ └── U90133_3132H3EE9_COLLAT_CURRENT.txt │ ├── howto.rst │ ├── img │ ├── .DS_Store │ ├── Intergration.png │ ├── Publication-Changement-des-conditions-2010-11-03.pdf │ ├── assump_balance.png │ ├── balance.png │ ├── bmw_viz.png │ ├── bondGroup.png │ ├── cash_report.png │ ├── cmpResult.png │ ├── confirm_url.png │ ├── deal_cycle_flow.png │ ├── deal_library.png │ ├── email-image.png │ ├── inspect_unified.png │ ├── multi-pricing.png │ ├── package_version.png │ ├── payFreq_poolFreq.png │ ├── readBondsCf.png │ ├── running_console.png │ ├── sensitivity_analysis.png │ ├── trigger.png │ ├── trigger_in_deal_run.png │ ├── user_choose_server.png │ ├── waterfallResult.png │ ├── waterfall_in_deal_runt.png │ └── yield_table.png │ ├── index.rst │ ├── installation.rst │ ├── library.rst │ ├── modeling.rst │ ├── nbsample.ipynb │ ├── nbsample │ ├── AccountSetup.ipynb │ ├── BondScheduleByPeriod.ipynb │ ├── EDML_BLUE_2024.ipynb │ ├── FeeFlowByIndex.ipynb │ ├── How-to-price-Balloon-Mortgage.ipynb │ ├── HowDealEnded.ipynb │ ├── IC_Test.ipynb │ ├── InspectSample.ipynb │ ├── IntOverIntExample.ipynb │ ├── IntroWaterfall.ipynb │ ├── Irr_001.ipynb │ ├── MultiIntBond.ipynb │ ├── MultiRunAssumption.ipynb │ ├── ObligorField.ipynb │ ├── ObligorTag.ipynb │ ├── PoolAndTag.ipynb │ ├── Refinance_Rate.ipynb │ ├── SRT_Example_Native_Prod.ipynb │ ├── TriggerByPeriod.ipynb │ ├── TriggerWithWaterfallActions.ipynb │ ├── WhyByTerm.ipynb │ ├── assumption.rst │ ├── bond_pricing.ipynb │ ├── comboSensitivity.ipynb │ ├── deal_basic.ipynb │ ├── debugExamples.rst │ ├── debug_sample.ipynb │ ├── firstLoss.ipynb │ ├── howToModelDealComponents.rst │ ├── index.rst │ ├── library_example.ipynb │ ├── masterTrust.ipynb │ ├── modelAccount.ipynb │ ├── modelExamples.rst │ ├── multiAsset.ipynb │ ├── pool_multiScenario.ipynb │ ├── pool_sample1.ipynb │ ├── pool_sample2.ipynb │ ├── pricing_asset.ipynb │ ├── re_securitization_example.ipynb │ ├── refinance.rst │ ├── revolving_buy_multiple_pools.ipynb │ ├── runAsset.rst │ ├── runDeal.rst │ ├── runPool.rst │ ├── run_deal.ipynb │ ├── sellAssets.ipynb │ ├── single_fixasset.ipynb │ ├── single_installment.ipynb │ ├── single_invoice.ipynb │ ├── single_lease.ipynb │ ├── single_loan.ipynb │ ├── single_mortgage.ipynb │ ├── srtExamples.rst │ ├── structuring-lease-doc.ipynb │ ├── testCalls.ipynb │ ├── trasnferMultiple.ipynb │ ├── triggerExamples.rst │ ├── triggerRolling.ipynb │ ├── triggers.ipynb │ ├── viewMultiResult.ipynb │ ├── viewMultipleCfs.ipynb │ ├── viewResult.rst │ └── warehouse.ipynb │ ├── reference.rst │ └── support.rst ├── justfile ├── pyproject.toml ├── requirements.txt ├── setup.cfg └── shell.nix /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/README.md -------------------------------------------------------------------------------- /absbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/__init__.py -------------------------------------------------------------------------------- /absbox/client test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/client test.ipynb -------------------------------------------------------------------------------- /absbox/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/client.py -------------------------------------------------------------------------------- /absbox/deal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/deal.py -------------------------------------------------------------------------------- /absbox/examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/examples/__init__.py -------------------------------------------------------------------------------- /absbox/examples/baseCase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/examples/baseCase.py -------------------------------------------------------------------------------- /absbox/examples/mixAssetType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/examples/mixAssetType.py -------------------------------------------------------------------------------- /absbox/examples/triggerCase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/examples/triggerCase.py -------------------------------------------------------------------------------- /absbox/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/exception.py -------------------------------------------------------------------------------- /absbox/library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/library.py -------------------------------------------------------------------------------- /absbox/local/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /absbox/local/analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/local/analytics.py -------------------------------------------------------------------------------- /absbox/local/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/local/base.py -------------------------------------------------------------------------------- /absbox/local/cf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/local/cf.py -------------------------------------------------------------------------------- /absbox/local/chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/local/chart.py -------------------------------------------------------------------------------- /absbox/local/china.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/local/china.py -------------------------------------------------------------------------------- /absbox/local/cmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/local/cmp.py -------------------------------------------------------------------------------- /absbox/local/component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/local/component.py -------------------------------------------------------------------------------- /absbox/local/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/local/generic.py -------------------------------------------------------------------------------- /absbox/local/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/local/interface.py -------------------------------------------------------------------------------- /absbox/local/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/local/plot.py -------------------------------------------------------------------------------- /absbox/local/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/local/util.py -------------------------------------------------------------------------------- /absbox/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/report.py -------------------------------------------------------------------------------- /absbox/report_parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /absbox/report_parser/china.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/report_parser/china.py -------------------------------------------------------------------------------- /absbox/rootFinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/rootFinder.py -------------------------------------------------------------------------------- /absbox/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /absbox/tests/benchmark/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/out/test01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/out/test01.json -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/out/test02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/out/test02.json -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/out/test03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/out/test03.json -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/out/test04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/out/test04.json -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/out/test05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/out/test05.json -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/out/test06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/out/test06.json -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/out/test07.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/resp/test01.out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/resp/test01.out.json -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/resp/test02.out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/resp/test02.out.json -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/resp/test03.out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/resp/test03.out.json -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/resp/test04.out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/resp/test04.out.json -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/resp/test05.out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/resp/test05.out.json -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/resp/test06.out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/resp/test06.out.json -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/scenario/bmwRevolving.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/scenario/bmwRevolving.json -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/scenario/defaults01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/scenario/defaults01.json -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/scenario/loan_empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/scenario/loan_empty.json -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/scenario/mortgage_empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/scenario/mortgage_empty.json -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/scenario/rates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/scenario/rates.json -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/test01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/test01.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/test02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/test02.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/test03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/test03.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/test04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/test04.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/test05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/test05.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/test06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/test06.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/test07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/test07.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/test08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/test08.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/test09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/test09.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/test10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/test10.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/test11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/test11.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/test12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/test12.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/test13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/test13.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/test14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/test14.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/test15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/test15.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/test16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/test16.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/test17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/test17.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/test18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/test18.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/test19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/test19.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/test20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/test20.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/test21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/test21.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/test23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/test23.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/test24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/test24.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/china/test25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/china/test25.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/us/arm_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/us/arm_sample.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/us/float_bond.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/us/float_bond.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/us/scenario/bmwRevolving.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/us/scenario/bmwRevolving.json -------------------------------------------------------------------------------- /absbox/tests/benchmark/us/scenario/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/us/scenario/empty.json -------------------------------------------------------------------------------- /absbox/tests/benchmark/us/scenario/rates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/us/scenario/rates.json -------------------------------------------------------------------------------- /absbox/tests/benchmark/us/stepup_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/us/stepup_sample.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/us/test01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/us/test01.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/us/test02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/us/test02.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/us/test03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/us/test03.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/us/test04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/us/test04.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/us/test05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/us/test05.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/us/test06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/us/test06.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/us/test07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/us/test07.py -------------------------------------------------------------------------------- /absbox/tests/benchmark/us/test08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/benchmark/us/test08.py -------------------------------------------------------------------------------- /absbox/tests/clean_benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/clean_benchmark.sh -------------------------------------------------------------------------------- /absbox/tests/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "test_server":"https://absbox.org/api/dev" 3 | } 4 | -------------------------------------------------------------------------------- /absbox/tests/regression/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /absbox/tests/regression/assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/regression/assets.py -------------------------------------------------------------------------------- /absbox/tests/regression/deals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/regression/deals.py -------------------------------------------------------------------------------- /absbox/tests/regression/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/regression/pool.py -------------------------------------------------------------------------------- /absbox/tests/regression/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/regression/test_main.py -------------------------------------------------------------------------------- /absbox/tests/releaseChecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/releaseChecker.py -------------------------------------------------------------------------------- /absbox/tests/test_case.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/test_case.txt -------------------------------------------------------------------------------- /absbox/tests/test_nb_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/test_nb_regression.py -------------------------------------------------------------------------------- /absbox/tests/test_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/tests/test_regression.py -------------------------------------------------------------------------------- /absbox/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/absbox/validation.py -------------------------------------------------------------------------------- /docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/.DS_Store -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/.DS_Store -------------------------------------------------------------------------------- /docs/source/Hastructure.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/Hastructure.code-workspace -------------------------------------------------------------------------------- /docs/source/analytics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/analytics.rst -------------------------------------------------------------------------------- /docs/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/api.rst -------------------------------------------------------------------------------- /docs/source/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/changelog.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/deal_sample/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/__init__.py -------------------------------------------------------------------------------- /docs/source/deal_sample/arm_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/arm_sample.py -------------------------------------------------------------------------------- /docs/source/deal_sample/bondStepUp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/bondStepUp.py -------------------------------------------------------------------------------- /docs/source/deal_sample/book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/book.py -------------------------------------------------------------------------------- /docs/source/deal_sample/conditionAgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/conditionAgg.py -------------------------------------------------------------------------------- /docs/source/deal_sample/fee1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/fee1.py -------------------------------------------------------------------------------- /docs/source/deal_sample/fireTrigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/fireTrigger.py -------------------------------------------------------------------------------- /docs/source/deal_sample/float_bond.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/float_bond.py -------------------------------------------------------------------------------- /docs/source/deal_sample/multi_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/multi_pool.py -------------------------------------------------------------------------------- /docs/source/deal_sample/payPrinSeq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/payPrinSeq.py -------------------------------------------------------------------------------- /docs/source/deal_sample/rateCap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/rateCap.py -------------------------------------------------------------------------------- /docs/source/deal_sample/resec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/resec.py -------------------------------------------------------------------------------- /docs/source/deal_sample/stepup_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/stepup_sample.py -------------------------------------------------------------------------------- /docs/source/deal_sample/structuring_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/structuring_sample.py -------------------------------------------------------------------------------- /docs/source/deal_sample/test01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/test01.py -------------------------------------------------------------------------------- /docs/source/deal_sample/test02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/test02.py -------------------------------------------------------------------------------- /docs/source/deal_sample/test03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/test03.py -------------------------------------------------------------------------------- /docs/source/deal_sample/test04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/test04.py -------------------------------------------------------------------------------- /docs/source/deal_sample/test05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/test05.py -------------------------------------------------------------------------------- /docs/source/deal_sample/test06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/test06.py -------------------------------------------------------------------------------- /docs/source/deal_sample/test07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/test07.py -------------------------------------------------------------------------------- /docs/source/deal_sample/test08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/test08.py -------------------------------------------------------------------------------- /docs/source/deal_sample/test09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/test09.py -------------------------------------------------------------------------------- /docs/source/deal_sample/test10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/test10.py -------------------------------------------------------------------------------- /docs/source/deal_sample/test11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/test11.py -------------------------------------------------------------------------------- /docs/source/deal_sample/test12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/test12.py -------------------------------------------------------------------------------- /docs/source/deal_sample/test13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/test13.py -------------------------------------------------------------------------------- /docs/source/deal_sample/ysoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/deal_sample/ysoc.py -------------------------------------------------------------------------------- /docs/source/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/faq.rst -------------------------------------------------------------------------------- /docs/source/files/U90133_3132H3EE9_COLLAT_CURRENT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/files/U90133_3132H3EE9_COLLAT_CURRENT.txt -------------------------------------------------------------------------------- /docs/source/howto.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/howto.rst -------------------------------------------------------------------------------- /docs/source/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/img/.DS_Store -------------------------------------------------------------------------------- /docs/source/img/Intergration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/img/Intergration.png -------------------------------------------------------------------------------- /docs/source/img/Publication-Changement-des-conditions-2010-11-03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/img/Publication-Changement-des-conditions-2010-11-03.pdf -------------------------------------------------------------------------------- /docs/source/img/assump_balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/img/assump_balance.png -------------------------------------------------------------------------------- /docs/source/img/balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/img/balance.png -------------------------------------------------------------------------------- /docs/source/img/bmw_viz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/img/bmw_viz.png -------------------------------------------------------------------------------- /docs/source/img/bondGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/img/bondGroup.png -------------------------------------------------------------------------------- /docs/source/img/cash_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/img/cash_report.png -------------------------------------------------------------------------------- /docs/source/img/cmpResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/img/cmpResult.png -------------------------------------------------------------------------------- /docs/source/img/confirm_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/img/confirm_url.png -------------------------------------------------------------------------------- /docs/source/img/deal_cycle_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/img/deal_cycle_flow.png -------------------------------------------------------------------------------- /docs/source/img/deal_library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/img/deal_library.png -------------------------------------------------------------------------------- /docs/source/img/email-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/img/email-image.png -------------------------------------------------------------------------------- /docs/source/img/inspect_unified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/img/inspect_unified.png -------------------------------------------------------------------------------- /docs/source/img/multi-pricing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/img/multi-pricing.png -------------------------------------------------------------------------------- /docs/source/img/package_version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/img/package_version.png -------------------------------------------------------------------------------- /docs/source/img/payFreq_poolFreq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/img/payFreq_poolFreq.png -------------------------------------------------------------------------------- /docs/source/img/readBondsCf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/img/readBondsCf.png -------------------------------------------------------------------------------- /docs/source/img/running_console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/img/running_console.png -------------------------------------------------------------------------------- /docs/source/img/sensitivity_analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/img/sensitivity_analysis.png -------------------------------------------------------------------------------- /docs/source/img/trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/img/trigger.png -------------------------------------------------------------------------------- /docs/source/img/trigger_in_deal_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/img/trigger_in_deal_run.png -------------------------------------------------------------------------------- /docs/source/img/user_choose_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/img/user_choose_server.png -------------------------------------------------------------------------------- /docs/source/img/waterfallResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/img/waterfallResult.png -------------------------------------------------------------------------------- /docs/source/img/waterfall_in_deal_runt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/img/waterfall_in_deal_runt.png -------------------------------------------------------------------------------- /docs/source/img/yield_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/img/yield_table.png -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/library.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/library.rst -------------------------------------------------------------------------------- /docs/source/modeling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/modeling.rst -------------------------------------------------------------------------------- /docs/source/nbsample.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/AccountSetup.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/AccountSetup.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/BondScheduleByPeriod.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/BondScheduleByPeriod.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/EDML_BLUE_2024.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/EDML_BLUE_2024.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/FeeFlowByIndex.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/FeeFlowByIndex.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/How-to-price-Balloon-Mortgage.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/How-to-price-Balloon-Mortgage.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/HowDealEnded.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/HowDealEnded.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/IC_Test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/IC_Test.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/InspectSample.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/InspectSample.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/IntOverIntExample.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/IntOverIntExample.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/IntroWaterfall.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/IntroWaterfall.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/Irr_001.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/Irr_001.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/MultiIntBond.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/MultiIntBond.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/MultiRunAssumption.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/MultiRunAssumption.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/ObligorField.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/ObligorField.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/ObligorTag.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/ObligorTag.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/PoolAndTag.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/PoolAndTag.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/Refinance_Rate.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/Refinance_Rate.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/SRT_Example_Native_Prod.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/SRT_Example_Native_Prod.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/TriggerByPeriod.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/TriggerByPeriod.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/TriggerWithWaterfallActions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/TriggerWithWaterfallActions.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/WhyByTerm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/WhyByTerm.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/assumption.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/assumption.rst -------------------------------------------------------------------------------- /docs/source/nbsample/bond_pricing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/bond_pricing.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/comboSensitivity.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/comboSensitivity.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/deal_basic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/deal_basic.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/debugExamples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/debugExamples.rst -------------------------------------------------------------------------------- /docs/source/nbsample/debug_sample.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/debug_sample.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/firstLoss.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/firstLoss.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/howToModelDealComponents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/howToModelDealComponents.rst -------------------------------------------------------------------------------- /docs/source/nbsample/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/index.rst -------------------------------------------------------------------------------- /docs/source/nbsample/library_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/library_example.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/masterTrust.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/masterTrust.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/modelAccount.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/modelAccount.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/modelExamples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/modelExamples.rst -------------------------------------------------------------------------------- /docs/source/nbsample/multiAsset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/multiAsset.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/pool_multiScenario.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/pool_multiScenario.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/pool_sample1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/pool_sample1.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/pool_sample2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/pool_sample2.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/pricing_asset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/pricing_asset.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/re_securitization_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/re_securitization_example.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/refinance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/refinance.rst -------------------------------------------------------------------------------- /docs/source/nbsample/revolving_buy_multiple_pools.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/revolving_buy_multiple_pools.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/runAsset.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/runAsset.rst -------------------------------------------------------------------------------- /docs/source/nbsample/runDeal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/runDeal.rst -------------------------------------------------------------------------------- /docs/source/nbsample/runPool.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/runPool.rst -------------------------------------------------------------------------------- /docs/source/nbsample/run_deal.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/run_deal.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/sellAssets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/sellAssets.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/single_fixasset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/single_fixasset.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/single_installment.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/single_installment.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/single_invoice.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/single_invoice.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/single_lease.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/single_lease.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/single_loan.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/single_loan.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/single_mortgage.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/single_mortgage.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/srtExamples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/srtExamples.rst -------------------------------------------------------------------------------- /docs/source/nbsample/structuring-lease-doc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/structuring-lease-doc.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/testCalls.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/testCalls.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/trasnferMultiple.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/trasnferMultiple.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/triggerExamples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/triggerExamples.rst -------------------------------------------------------------------------------- /docs/source/nbsample/triggerRolling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/triggerRolling.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/triggers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/triggers.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/viewMultiResult.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/viewMultiResult.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/viewMultipleCfs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/viewMultipleCfs.ipynb -------------------------------------------------------------------------------- /docs/source/nbsample/viewResult.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/viewResult.rst -------------------------------------------------------------------------------- /docs/source/nbsample/warehouse.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/nbsample/warehouse.ipynb -------------------------------------------------------------------------------- /docs/source/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/reference.rst -------------------------------------------------------------------------------- /docs/source/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/docs/source/support.rst -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/justfile -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/setup.cfg -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowbean/AbsBox/HEAD/shell.nix --------------------------------------------------------------------------------