siat 2.14.2__py3-none-any.whl → 3.0.0__py3-none-any.whl
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.
- siat/allin.py +1 -0
- siat/assets_liquidity.py +16 -16
- siat/beta_adjustment.py +6 -6
- siat/beta_adjustment_china.py +9 -9
- siat/bond.py +71 -67
- siat/capm_beta.py +11 -11
- siat/capm_beta2.py +49 -23
- siat/common.py +427 -60
- siat/compare_cross.py +15 -82
- siat/exchange_bond_china.pickle +0 -0
- siat/fama_french.py +3 -3
- siat/financials.py +15 -15
- siat/financials2.py +8 -8
- siat/financials_china.py +20 -20
- siat/financials_china2.py +25 -25
- siat/fund_china.pickle +0 -0
- siat/fund_china.py +5 -4
- siat/grafix.py +195 -132
- siat/markowitz.py +6 -5
- siat/option_china.py +1 -1
- siat/option_pricing.py +6 -6
- siat/risk_adjusted_return.py +14 -14
- siat/risk_adjusted_return2.py +64 -42
- siat/risk_evaluation.py +32 -32
- siat/risk_free_rate.py +0 -0
- siat/sector_china.py +3 -195
- siat/security_price2.py +616 -0
- siat/security_prices.py +935 -308
- siat/security_trend2.py +28 -47
- siat/stock.py +225 -437
- siat/stock_china.py +19 -19
- siat/stock_info.pickle +0 -0
- siat/stock_technical.py +547 -144
- siat/transaction.py +3 -3
- siat/translate.py +781 -24
- siat/valuation.py +6 -6
- siat/var_model_validation.py +2 -2
- {siat-2.14.2.dist-info → siat-3.0.0.dist-info}/METADATA +1 -1
- {siat-2.14.2.dist-info → siat-3.0.0.dist-info}/RECORD +41 -40
- {siat-2.14.2.dist-info → siat-3.0.0.dist-info}/WHEEL +0 -0
- {siat-2.14.2.dist-info → siat-3.0.0.dist-info}/top_level.txt +0 -0
siat/transaction.py
CHANGED
@@ -105,11 +105,11 @@ def compare_indicator(df1,df2,indicator,fromdate,todate, \
|
|
105
105
|
df2i2=df2i1[df2i1.index <= end]
|
106
106
|
|
107
107
|
#绘图
|
108
|
-
ticker1=
|
108
|
+
ticker1=ticker_name(df1i2['ticker'][0])
|
109
109
|
colname1=indicator
|
110
110
|
label1=ectranslate(indicator)
|
111
111
|
|
112
|
-
ticker2=
|
112
|
+
ticker2=ticker_name(df2i2['ticker'][0])
|
113
113
|
colname2=indicator
|
114
114
|
label2=ectranslate(indicator)
|
115
115
|
|
@@ -237,7 +237,7 @@ def draw_indicator(df1,indicator,fromdate,todate, \
|
|
237
237
|
|
238
238
|
|
239
239
|
#绘图
|
240
|
-
ticker1=
|
240
|
+
ticker1=ticker_name(df1i2['ticker'][0])
|
241
241
|
colname1=indicator
|
242
242
|
label1=ectranslate(indicator)
|
243
243
|
|