Skip to content

Instantly share code, notes, and snippets.

@julian-klode
Last active January 3, 2023 16:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save julian-klode/a5940b20783e55648a9513be4865857c to your computer and use it in GitHub Desktop.
Save julian-klode/a5940b20783e55648a9513be4865857c to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"id": "0dc8ffa4",
"metadata": {},
"outputs": [],
"source": [
"em_imi = 7328480.96 # https://www.msci.com/documents/10199/edec59a6-b41e-44c4-9cf4-1e82863cfda7\n",
"world_small = 6946485.32 # https://www.msci.com/www/fact-sheet/msci-world-small-cap-index/07077698\n",
"acwi_imi = 66530117.78 # https://www.msci.com/www/index-factsheets/msci-acwi-imi/06611797\n",
"world = 52255151.50 # https://www.msci.com/documents/10199/4db922ce-68d2-446d-2f9e-4ed408a9db29"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "e5d68632",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"0.11015283310084649"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"em_imi / acwi_imi"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "69c3cc85",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"0.10441113817009089"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"world_small / acwi_imi"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "98831a58",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"0.7854360287290626"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"world / acwi_imi"
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "0f840f99",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"0.0"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"acwi_imi - (world+world_small+em_imi)"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.9"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment