PyQuantimClient 1.0.93__tar.gz → 1.0.95__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.
- {pyquantimclient-1.0.93 → pyquantimclient-1.0.95}/PKG-INFO +1 -1
- {pyquantimclient-1.0.93 → pyquantimclient-1.0.95}/PyQuantimClient.egg-info/PKG-INFO +1 -1
- {pyquantimclient-1.0.93 → pyquantimclient-1.0.95}/PyQuantimClient.egg-info/SOURCES.txt +1 -0
- {pyquantimclient-1.0.93 → pyquantimclient-1.0.95}/setup.py +1 -1
- {pyquantimclient-1.0.93 → pyquantimclient-1.0.95}/src/data.py +17 -0
- pyquantimclient-1.0.95/src/returns.py +25 -0
- {pyquantimclient-1.0.93 → pyquantimclient-1.0.95}/PyQuantimClient.egg-info/dependency_links.txt +0 -0
- {pyquantimclient-1.0.93 → pyquantimclient-1.0.95}/PyQuantimClient.egg-info/top_level.txt +0 -0
- {pyquantimclient-1.0.93 → pyquantimclient-1.0.95}/README.md +0 -0
- {pyquantimclient-1.0.93 → pyquantimclient-1.0.95}/setup.cfg +0 -0
- {pyquantimclient-1.0.93 → pyquantimclient-1.0.95}/src/__init__.py +0 -0
- {pyquantimclient-1.0.93 → pyquantimclient-1.0.95}/src/api.py +0 -0
- {pyquantimclient-1.0.93 → pyquantimclient-1.0.95}/src/benchmarks.py +0 -0
- {pyquantimclient-1.0.93 → pyquantimclient-1.0.95}/src/bi.py +0 -0
- {pyquantimclient-1.0.93 → pyquantimclient-1.0.95}/src/credit.py +0 -0
- {pyquantimclient-1.0.93 → pyquantimclient-1.0.95}/src/energy.py +0 -0
- {pyquantimclient-1.0.93 → pyquantimclient-1.0.95}/src/performance.py +0 -0
- {pyquantimclient-1.0.93 → pyquantimclient-1.0.95}/src/portfolios.py +0 -0
- {pyquantimclient-1.0.93 → pyquantimclient-1.0.95}/src/preprocess_co.py +0 -0
- {pyquantimclient-1.0.93 → pyquantimclient-1.0.95}/src/risk.py +0 -0
- {pyquantimclient-1.0.93 → pyquantimclient-1.0.95}/src/utils.py +0 -0
|
@@ -4,7 +4,7 @@ setup(
|
|
|
4
4
|
name='PyQuantimClient',
|
|
5
5
|
packages=['PyQuantimClient'],
|
|
6
6
|
package_dir={'PyQuantimClient': 'src'},
|
|
7
|
-
version='1.0.
|
|
7
|
+
version='1.0.95',
|
|
8
8
|
description='Python client to access quantIM services',
|
|
9
9
|
author='Daniel Velasquez',
|
|
10
10
|
author_email='daniel.velasquez@sura-im.com',
|
|
@@ -16,3 +16,20 @@ class time_series(quantim):
|
|
|
16
16
|
resp = self.api_call('get_series', method="post", data=data, verify=verify)
|
|
17
17
|
ts, summ, tks_invalid = pd.DataFrame(resp['ts']).set_index("Date"), pd.DataFrame(resp['summ']), resp['tks_invalid']
|
|
18
18
|
return ts, summ, tks_invalid
|
|
19
|
+
|
|
20
|
+
class s3(quantim):
|
|
21
|
+
def __init__(self, username, password, secretpool, env="pdn", api_url=None):
|
|
22
|
+
super().__init__(username, password, secretpool, env, api_url)
|
|
23
|
+
|
|
24
|
+
def read_file(self, bucket, key, sep=',', verify=False, res_url=False):
|
|
25
|
+
'''
|
|
26
|
+
Get series
|
|
27
|
+
'''
|
|
28
|
+
data = {'bucket':bucket, 'key':key, 'sep':sep, 'res_url':res_url}
|
|
29
|
+
resp = self.api_call('retrieve_data_s3', method="post", data=data, verify=verify)
|
|
30
|
+
|
|
31
|
+
if res_url:
|
|
32
|
+
output = resp
|
|
33
|
+
else:
|
|
34
|
+
output = pd.DataFrame(resp)
|
|
35
|
+
return output
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
import pandas as pd
|
|
3
|
+
import numpy as np
|
|
4
|
+
import datetime as dt
|
|
5
|
+
from .api import quantim
|
|
6
|
+
|
|
7
|
+
class returns(quantim):
|
|
8
|
+
def __init__(self, username, password, secretpool, env="pdn", api_url=None):
|
|
9
|
+
super().__init__(username, password, secretpool, env, api_url)
|
|
10
|
+
|
|
11
|
+
def expected_returns(self, ref_curr, views_df, tickers=None, assets=None, horizon_in_months=12, views_conf=0.75, conf_interv=0.75, median=True, period="monthly", since_date="2008-01-01"):
|
|
12
|
+
'''
|
|
13
|
+
Estimate expected returns.
|
|
14
|
+
'''
|
|
15
|
+
views = views_df.to_dict(orient="records")
|
|
16
|
+
data = {'ref_curr':ref_curr, 'views':views, "ref_curr":ref_curr, "tickers":tickers, "assets":assets, "horizon_in_months":horizon_in_months, "views_conf":views_conf, "conf_interv":conf_interv, "median":median, "period":period, "since_date":since_date}
|
|
17
|
+
try:
|
|
18
|
+
resp = self.api_call('expected_returns', method="post", data=data, verify=False)
|
|
19
|
+
except:
|
|
20
|
+
resp = {'success':False, 'message':'Check permissions!'}
|
|
21
|
+
return resp
|
|
22
|
+
|
|
23
|
+
exp_ret, views_df = pd.DataFrame(resp['expected_rets']), pd.Series(resp['views_abs'])
|
|
24
|
+
|
|
25
|
+
return exp_ret, views_df
|
{pyquantimclient-1.0.93 → pyquantimclient-1.0.95}/PyQuantimClient.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|