I have obtained the time-series I need in CODEBK, but I now need to downlaod them offline. Even though I specify the path and the code does not return erros, the pkl file is not available in the destination folder.
Are there blocks to download or is there a different way to obtain them locally for some ad hoc analysis on my Python?
data = {'equities': eq_hist, 'rates': ir_hist, 'commodities': cm_hist, 'fx': fx_hist}
pd.to_pickle(data, r'JohnDoe\portfolio_monitoring.pkl')
Thanks