pwb-toolbox 0.1.0__tar.gz → 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pwb_toolbox-0.1.0 → pwb_toolbox-0.1.1}/PKG-INFO +1 -1
- {pwb_toolbox-0.1.0 → pwb_toolbox-0.1.1}/pwb_toolbox/datasets/__init__.py +21 -0
- {pwb_toolbox-0.1.0 → pwb_toolbox-0.1.1}/pwb_toolbox.egg-info/PKG-INFO +1 -1
- {pwb_toolbox-0.1.0 → pwb_toolbox-0.1.1}/setup.cfg +1 -1
- {pwb_toolbox-0.1.0 → pwb_toolbox-0.1.1}/LICENSE.txt +0 -0
- {pwb_toolbox-0.1.0 → pwb_toolbox-0.1.1}/README.md +0 -0
- {pwb_toolbox-0.1.0 → pwb_toolbox-0.1.1}/pwb_toolbox/__init__.py +0 -0
- {pwb_toolbox-0.1.0 → pwb_toolbox-0.1.1}/pwb_toolbox.egg-info/SOURCES.txt +0 -0
- {pwb_toolbox-0.1.0 → pwb_toolbox-0.1.1}/pwb_toolbox.egg-info/dependency_links.txt +0 -0
- {pwb_toolbox-0.1.0 → pwb_toolbox-0.1.1}/pwb_toolbox.egg-info/requires.txt +0 -0
- {pwb_toolbox-0.1.0 → pwb_toolbox-0.1.1}/pwb_toolbox.egg-info/top_level.txt +0 -0
- {pwb_toolbox-0.1.0 → pwb_toolbox-0.1.1}/pyproject.toml +0 -0
@@ -770,13 +770,34 @@ def __extend_etfs(df_etfs):
|
|
770
770
|
mapping = {
|
771
771
|
"AGG": ["Bonds-Daily-Price", "US10Y"],
|
772
772
|
"EPP": ["Indices-Daily-Price", "HSI"],
|
773
|
+
"EWA": ["Indices-Daily-Price", "AS30"], # Australia
|
774
|
+
"EWO": ["Indices-Daily-Price", "ATX"], # Austria
|
775
|
+
"EWK": ["Indices-Daily-Price", "BEL20"], # Belgium
|
776
|
+
"EWZ": ["Indices-Daily-Price", "IBOV"], # Brazil
|
777
|
+
"EWC": ["Indices-Daily-Price", "SPTSX"], # Canada
|
778
|
+
"FXI": ["Indices-Daily-Price", "SSE50"], # China
|
779
|
+
"EWQ": ["Indices-Daily-Price", "CAC"], # France
|
780
|
+
"EWG": ["Indices-Daily-Price", "DAX"], # Germany
|
781
|
+
"EWH": ["Indices-Daily-Price", "HSI"], # Hong Kong
|
782
|
+
"EWI": ["Indices-Daily-Price", "FTSEMIB"], # Italy
|
773
783
|
"EWJ": ["Indices-Daily-Price", "NKY"],
|
784
|
+
"EWM": ["Indices-Daily-Price", "FBMKLCI"], # Malaysia
|
785
|
+
"EWW": ["Indices-Daily-Price", "MEXBOL"], # Mexico
|
786
|
+
"EWN": ["Indices-Daily-Price", "AEX"], # Netherlands
|
787
|
+
"EWS": ["Indices-Daily-Price", "FSSTI"], # Singapore
|
788
|
+
"EZA": ["Indices-Daily-Price", "TOP40"], # South Africa
|
789
|
+
"EWP": ["Indices-Daily-Price", "IBEX"], # Spain
|
790
|
+
"EWD": ["Indices-Daily-Price", "OMX"], # Sweden
|
791
|
+
"EWL": ["Indices-Daily-Price", "SMI"], # Switzerland
|
792
|
+
"EWT": ["Indices-Daily-Price", "TWSE"], # Taiwan
|
793
|
+
"EWU": ["Indices-Daily-Price", "UKX"], # United Kingdom
|
774
794
|
"GLD": ["Commodities-Daily-Price", "GC1"],
|
775
795
|
"IEF": ["Bonds-Daily-Price", "US10Y"],
|
776
796
|
"IEV": ["Indices-Daily-Price", "SX5E"],
|
777
797
|
"IWB": ["Indices-Daily-Price", "SPX"],
|
778
798
|
"SHY": ["Bonds-Daily-Price", "US1Y"],
|
779
799
|
"SPY": ["Indices-Daily-Price", "SPX"],
|
800
|
+
"THD": ["Indices-Daily-Price", "SET50"], # Thailand
|
780
801
|
}
|
781
802
|
symbols = df_etfs.symbol.unique()
|
782
803
|
mapping = {k: v for k, v in mapping.items() if k in symbols}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|