siat 3.10.24__py3-none-any.whl → 3.10.75__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/security_prices.py CHANGED
@@ -1571,24 +1571,24 @@ def get_dividend_yq(ticker,start,end,facecolor="papayawhip"):
1571
1571
  print(f" No dividend info found for {ticker} during {start} to {end}")
1572
1572
  return None
1573
1573
 
1574
- div2['dividends']=div2['dividends'].apply(lambda x: round(x,4))
1574
+ div2['dividends']=div2['dividends'].apply(lambda x: str(round(x,5)))
1575
1575
  div2['Close']=div2['Close'].apply(lambda x: round(x,2))
1576
1576
  div2['Adj Close']=div2['Adj Close'].apply(lambda x: round(x,2))
1577
- div2.rename(columns={"date":text_lang("除息日期","ex-Dividend Date"), \
1578
- "dividends":text_lang("每股分红(本币,税前)","Dividend per Share (Pre-tax)"), \
1577
+ div2.rename(columns={"date":text_lang("除息日期","Ex-Dividend"), \
1578
+ "dividends":text_lang("每股分红(本币,税前)","Div per Share (Pre-tax)"), \
1579
1579
  "Close":text_lang("收盘价","Close Price"), \
1580
- "Adj Close":text_lang("前复权价","Adjusted Close Price")}, \
1580
+ "Adj Close":text_lang("调整收盘价(前复权价)","Adjusted Close Price")}, \
1581
1581
  inplace=True)
1582
1582
 
1583
1583
  titletxt=ticker_name(ticker,"stock")+": "+text_lang("股票分红历史","Stock Dividend History")
1584
1584
  import datetime
1585
1585
  todaydt = datetime.date.today()
1586
- footnote_cn=f"期间:{start}至{end}, 数据来源:雅虎, {todaydt}"
1587
- footnote_en=f"Period:{start} to {end}. Data source:Yahoo, {todaydt}"
1586
+ footnote_cn=f"【注】期间:{start}至{end}, 数据来源:雅虎, {todaydt}"
1587
+ footnote_en=f"[Note]Period:{start} to {end}. Data source:Yahoo, {todaydt}"
1588
1588
  footnote=text_lang(footnote_cn,footnote_en)
1589
1589
  df_display_CSS(div2,titletxt=titletxt,footnote=footnote,facecolor=facecolor,decimals=2, \
1590
1590
  first_col_align='center',second_col_align='center', \
1591
- last_col_align='right',other_col_align='center')
1591
+ last_col_align='center',other_col_align='center')
1592
1592
 
1593
1593
 
1594
1594
  return div2
@@ -1627,14 +1627,14 @@ def get_split_yq(ticker,start,end,facecolor="papayawhip"):
1627
1627
  div2.rename(columns={"date":text_lang("分拆日期","Split Date"), \
1628
1628
  "splits":text_lang("分拆比例","Split Ratio"), \
1629
1629
  "Close":text_lang("收盘价","Close Price"), \
1630
- "Adj Close":text_lang("前复权价","Adjusted Close Price")}, \
1630
+ "Adj Close":text_lang("调整收盘价(前复权价)","Adjusted Close Price")}, \
1631
1631
  inplace=True)
1632
1632
 
1633
1633
  titletxt=ticker_name(ticker,"stock")+": "+text_lang("股票分拆历史","Stock Split History")
1634
1634
  import datetime
1635
1635
  todaydt = datetime.date.today()
1636
- footnote_cn=f"期间:{start}至{end}, 数据来源:雅虎, {todaydt}"
1637
- footnote_en=f"Period:{start} to {end}. Data source:Yahoo, {todaydt}"
1636
+ footnote_cn=f"【注】期间:{start}至{end}, 数据来源:雅虎, {todaydt}"
1637
+ footnote_en=f"[Note]Period:{start} to {end}. Data source:Yahoo, {todaydt}"
1638
1638
  footnote=text_lang(footnote_cn,footnote_en)
1639
1639
  df_display_CSS(div2,titletxt=titletxt,footnote=footnote,facecolor=facecolor,decimals=2, \
1640
1640
  first_col_align='center',second_col_align='center', \
@@ -2427,7 +2427,7 @@ if __name__ =="__main__":
2427
2427
 
2428
2428
  df=get_portfolio_prices(portfolio,fromdate,todate,adj=False,source='auto')
2429
2429
 
2430
- def get_portfolio_prices(portfolio,fromdate,todate,adj=False,source='auto'):
2430
+ def get_portfolio_prices(portfolio,fromdate,todate,adj=True,source='auto',RF=0):
2431
2431
  """
2432
2432
  功能:抓取投资组合portfolio的每日价值和FF3各个因子
2433
2433
  输入:投资组合portfolio,开始日期,结束日期
@@ -2506,16 +2506,17 @@ def get_portfolio_prices(portfolio,fromdate,todate,adj=False,source='auto'):
2506
2506
  pf4=p
2507
2507
  """
2508
2508
  pf4['Ret%']=pf4['Close'].pct_change()*100.0
2509
+ pf4['Ret-RF']=pf4['Ret%'] - RF*100/365
2509
2510
 
2510
- #获得期间的市场收益率:假设无风险收益率非常小,可以忽略
2511
+ #获得期间的市场收益率
2511
2512
  try:
2512
2513
  m=get_prices(mktidx,fromdate,todate)
2513
2514
  except:
2514
2515
  print(" #Error(get_portfolio_prices): info inaccesible for market index",mktidx)
2515
2516
  return None
2516
2517
 
2517
- m['Mkt-RF']=m['Close'].pct_change()*100.0
2518
- m['RF']=0.0
2518
+ m['Mkt-RF']=m['Close'].pct_change()*100.0 - RF*100/365
2519
+ m['RF']=RF*100/365
2519
2520
  rf_df=m[['Mkt-RF','RF']]
2520
2521
 
2521
2522
  #合并pf4与rf_df
@@ -2539,7 +2540,7 @@ def get_portfolio_prices(portfolio,fromdate,todate,adj=False,source='auto'):
2539
2540
 
2540
2541
  pfdf=prices[['Portfolio','Shares','Date','Weekday', \
2541
2542
  'Open','Close','Adj Close','Adjustment', \
2542
- 'Volume','Amount','Ret%','Mkt-RF','RF']]
2543
+ 'Volume','Amount','Ret%','Ret-RF','Mkt-RF','RF']]
2543
2544
 
2544
2545
  return pfdf
2545
2546
 
siat/security_trend2.py CHANGED
@@ -594,17 +594,17 @@ def security_trend(ticker,indicator='Close',adjust='', \
594
594
  adjust='qfq'
595
595
 
596
596
  df=compare_beta_security(ticker=tickers,start=fromdate,end=todate, \
597
- adjust=adjust, \
598
- RF=RF,regression_period=regression_period, \
599
- attention_value=attention_value,attention_value_area=attention_value_area, \
600
- attention_point=attention_point,attention_point_area=attention_point_area, \
601
- band_area=band_area, \
602
- graph=graph,facecolor=facecolor,loc=loc1, \
603
- annotate=annotate,annotate_value=annotate_value, \
604
- mark_top=mark_top,mark_bottom=mark_bottom, \
605
- mark_start=mark_start,mark_end=mark_end, \
606
- mktidx=market_index,source=source, \
607
- ticker_type=ticker_type)
597
+ adjust=adjust, \
598
+ RF=RF,regression_period=regression_period, \
599
+ attention_value=attention_value,attention_value_area=attention_value_area, \
600
+ attention_point=attention_point,attention_point_area=attention_point_area, \
601
+ band_area=band_area, \
602
+ graph=graph,facecolor=facecolor,loc=loc1, \
603
+ annotate=annotate,annotate_value=annotate_value, \
604
+ mark_top=mark_top,mark_bottom=mark_bottom, \
605
+ mark_start=mark_start,mark_end=mark_end, \
606
+ mktidx=market_index,source=source, \
607
+ ticker_type=ticker_type)
608
608
 
609
609
  return df
610
610
 
siat/stock.py CHANGED
@@ -2320,7 +2320,7 @@ if __name__ =="__main__":
2320
2320
 
2321
2321
 
2322
2322
 
2323
- def candlestick(stkcd,fromdate,todate,volume=True,style='China',mav=[5,10], \
2323
+ def candlestick(stkcd,start,end,volume=True,style='China',mav=[5,10], \
2324
2324
  ticker_type='auto',facecolor='whitesmoke',loc='best'):
2325
2325
  """
2326
2326
  功能:绘制证券价格K线图。
@@ -2331,6 +2331,7 @@ def candlestick(stkcd,fromdate,todate,volume=True,style='China',mav=[5,10], \
2331
2331
  输出:绘制证券价格蜡烛图线图
2332
2332
  返回:证券价格数据表
2333
2333
  """
2334
+ fromdate=start; todate=end
2334
2335
 
2335
2336
  #找出mav的最长天数
2336
2337
  mav_max=0
@@ -2469,7 +2470,7 @@ if __name__ =="__main__":
2469
2470
  price=candlestick("000002.SZ","2020-2-1","2020-2-29")
2470
2471
 
2471
2472
  #==============================================================================
2472
- def candlestick_pro(stkcd,fromdate,todate, \
2473
+ def candlestick_pro(stkcd,start,end, \
2473
2474
  colorup='#00ff00',colordown='#ff00ff',style='nightclouds', \
2474
2475
  ticker_type='auto'):
2475
2476
  """
@@ -2482,6 +2483,7 @@ def candlestick_pro(stkcd,fromdate,todate, \
2482
2483
  返回:证券价格数据表
2483
2484
  注意:可能导致其后的matplotlib绘图汉字乱码
2484
2485
  """
2486
+ fromdate=start; todate=end
2485
2487
 
2486
2488
  #抓取证券价格
2487
2489
  from siat.security_price2 import get_price_1ticker_mixed
@@ -2569,7 +2571,7 @@ if __name__ =="__main__":
2569
2571
 
2570
2572
  colorup='red';colordown='green';width=0.7
2571
2573
 
2572
- def candlestick_demo(stkcd,fromdate,todate, \
2574
+ def candlestick_demo(stkcd,start,end, \
2573
2575
  colorup='red',colordown='green',width=0.7, \
2574
2576
  ticker_type='auto',facecolor='whitesmoke'):
2575
2577
  """
@@ -2579,6 +2581,7 @@ def candlestick_demo(stkcd,fromdate,todate, \
2579
2581
  输出:绘制证券价格蜡烛图线图
2580
2582
  返回:证券价格数据表
2581
2583
  """
2584
+ fromdate=start; todate=end
2582
2585
 
2583
2586
  #抓取证券价格
2584
2587
  from siat.security_price2 import get_price_1ticker_mixed
siat/stock_china.py CHANGED
@@ -1432,7 +1432,7 @@ def stock_profile_china(ticker,category='profile', \
1432
1432
  print(titletxt)
1433
1433
  print(" #Warning(stock_profile_china): dividend info not found for stock",ticker)
1434
1434
  """
1435
- print(f" {tickername}:{start}后未找到分红信息")
1435
+ print(f" {tickername}:no dividend info found after {start}")
1436
1436
  return
1437
1437
 
1438
1438
  if len(df3)==0:
@@ -1441,7 +1441,7 @@ def stock_profile_china(ticker,category='profile', \
1441
1441
  print(titletxt)
1442
1442
  print(" No dividend record found for stock",ticker)
1443
1443
  """
1444
- print(f" {tickername}:{start}后未找到分红信息")
1444
+ print(f" {tickername}:no dividend info found after {start}")
1445
1445
  return
1446
1446
 
1447
1447
  # 整理信息
@@ -1460,9 +1460,9 @@ def stock_profile_china(ticker,category='profile', \
1460
1460
  dftmp4=dftmp3[dftmp3['公告日期'] >= startpd.date()]
1461
1461
 
1462
1462
  if len(dftmp4) == 0:
1463
- print(f" {tickername}:{start}后未找到分红信息")
1463
+ print(f" {tickername}:no dividend info found after {start}")
1464
1464
  else:
1465
- titletxt=ticker_name(ticker,'stock')+':分红历史'
1465
+ titletxt=ticker_name(ticker,'stock')+': '+text_lang('分红历史','Dividend History')
1466
1466
  """
1467
1467
  if prettytab:
1468
1468
  pandas2prettytable(dftmp3,titletxt,firstColSpecial=False,leftColAlign='l',otherColAlign='c',tabborder=tabborder)
@@ -1473,7 +1473,16 @@ def stock_profile_china(ticker,category='profile', \
1473
1473
  print(dftmp3.to_markdown(tablefmt='Simple',index=False,colalign=alignlist))
1474
1474
  print('【注】送股/转增:股数/10股,派息:元(税前)/10股,数据来源:新浪财经,',str(today))
1475
1475
  """
1476
- footnote='【注】送股/转增:股数/10股,派息:元(税前)/10股,数据来源:新浪财经,'+str(stoday)
1476
+ footnotecn='【注】送股/转增:股数/10股,派息(元,税前)/10股,数据来源:新浪财经,'+str(stoday)
1477
+ footnoteen='[Note]Stock div/capitalization/cash div(RMB, pre-tax) per 10 shares, data source: Sina Finance, '+str(stoday)
1478
+ footnote=text_lang(footnotecn,footnoteen)
1479
+
1480
+ if check_language() == 'English':
1481
+ dftmp4.rename(columns={'公告日期':'Disclosure','送股':'Stock Div', \
1482
+ '转增':'Capitalization','派息':'Cash Div', \
1483
+ '股权登记日':'Record','除权除息日':'Ex-Dividend', \
1484
+ '红股上市日':'Stock Div Listing'},inplace=True)
1485
+
1477
1486
  df_display_CSS(df=dftmp4,titletxt=titletxt,footnote=footnote, \
1478
1487
  first_col_align='center',second_col_align='center', \
1479
1488
  last_col_align='center',other_col_align='center', \
@@ -1483,7 +1492,7 @@ def stock_profile_china(ticker,category='profile', \
1483
1492
  data_font_size=data_font_size)
1484
1493
 
1485
1494
  # 配股
1486
- titletxt=ticker_name(ticker,'stock')+':配股历史'
1495
+ titletxt=ticker_name(ticker,'stock')+': '+text_lang('配股历史','Rights Issue History')
1487
1496
  try:
1488
1497
  df3p=ak.stock_history_dividend_detail(symbol=ticker1, indicator="配股")
1489
1498
  except:
@@ -1526,8 +1535,17 @@ def stock_profile_china(ticker,category='profile', \
1526
1535
  print(dftmp3.to_markdown(tablefmt='Simple',index=False,colalign=alignlist))
1527
1536
  print('【注】配股方案:每10股的配股数,配股价格为元。数据来源:新浪财经,',str(today))
1528
1537
  """
1529
- footnote='【注】配股方案:每10股的配股数,配股价格为元。数据来源:新浪财经,'+str(stoday)
1530
- df_display_CSS(df=dftmp3,titletxt=titletxt,footnote=footnote, \
1538
+ footnotecn='【注】配股方案:每10股的配股数,配股价格为元。数据来源:新浪财经,'+str(stoday)
1539
+ footnoteen='Rights issue ratio: per 10 shares, subscription price in RMB, data source: Sina Finance, '+str(stoday)
1540
+ footnote=text_lang(footnotecn,footnoteen)
1541
+
1542
+ if check_language() == 'English':
1543
+ dftmp4.rename(columns={'公告日期':'Disclosure','配股方案':'Rights Issue Ratio', \
1544
+ '配股价格':'Subscription Price','股权登记日':'Record', \
1545
+ '除权日':'Ex-Rights','缴款起始日':'Subscription Start', \
1546
+ '缴款终止日':'Subscription End','配股上市日':'Rights Listing'},inplace=True)
1547
+
1548
+ df_display_CSS(df=dftmp4,titletxt=titletxt,footnote=footnote, \
1531
1549
  first_col_align='center',second_col_align='center', \
1532
1550
  last_col_align='center',other_col_align='center', \
1533
1551
 
siat/translate.py CHANGED
@@ -1283,7 +1283,8 @@ def codetranslate0(code):
1283
1283
  ['T82U.SI','Suntec REIT'],['HMN.SI','雅诗阁公寓REIT'],
1284
1284
 
1285
1285
  #期货==================================================================
1286
- ["HG=F",'COMEX铜矿石期货'],["CL=F",'NYM原油期货'],
1286
+ ["HG=F",'COMEX铜矿石期货'],
1287
+ ["CL=F",'NYM原油期货'],["BZ=F",'NYM布伦特原油期货'],
1287
1288
  ["NG=F",'NYM天然气期货'],["MTF=F",'NYM煤炭期货'],
1288
1289
  ["GC=F",'COMEX黄金期货'],["MGC=F",'COMEX微型黄金期货'],
1289
1290
  ["SGC=F",'上海黄金期货'],
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: siat
3
- Version: 3.10.24
3
+ Version: 3.10.75
4
4
  Summary: Securities Investment Analysis Tools (siat)
5
5
  Home-page: https://pypi.org/project/siat/
6
6
  Author: Prof. WANG Dehong, International Business School, Beijing Foreign Studies University
@@ -10,16 +10,16 @@ siat/beta_adjustment.py,sha256=u_EZt3rEbvXDpqcJp_hUh9637P5vsrRHEfX6uG9Uin8,37292
10
10
  siat/beta_adjustment_china.py,sha256=z17bstK2WtlKKqUl6aCcP3Pv661PWgyWqAqGHGUH7Yk,20807
11
11
  siat/beta_adjustment_test.py,sha256=nBhvQQfqxooCHjy5hL0a8V0ZC58BjuCZVFpqpWpHeF0,2467
12
12
  siat/blockchain.py,sha256=awF3GDtlwaJhku0a2kLuXOS8d3IzkjR_RyzlZWvD3L4,6032
13
- siat/bond.py,sha256=EA6D150F3ZE1CmevwhrLV-3A-8Q7nKQEErh94bT2bNs,109235
13
+ siat/bond.py,sha256=A4CrEeUaB1HqijPjEcrdzoxiekTi39Y5TwMr-B74eSs,111438
14
14
  siat/bond_base.py,sha256=ClHJ5dzjoO9knGhX65Sbyk0i0uKQpmdKGUblR-wrXTs,37681
15
15
  siat/bond_china.py,sha256=WzUhjYYk8tsr3BDWLQcpuj9DqNxTzBSIi_wuAOZ48kY,3082
16
16
  siat/bond_test.py,sha256=yUOFw7ddGU-kb1rJdnsjkJWziDNgUR7OLDA7F7Ub91A,5246
17
17
  siat/bond_zh_sina.py,sha256=26BohGcS120utwqg9dJvdGm5OkuNpNu5bco80uOuQpU,4423
18
- siat/capm_beta.py,sha256=cxXdRVBQBllhbfz1LeTJAIWvyRYhW54nhtNUXv4HwS0,29063
19
- siat/capm_beta2.py,sha256=LmrfFhm4A-HLGolJ5rdlZFDGJkClS2I3Wv7gaHM3Tdw,34275
18
+ siat/capm_beta.py,sha256=1NjLRxD0fCZvSCzCDtI_CMSB-PFMLOeDfrwcfWa-vsg,29118
19
+ siat/capm_beta2.py,sha256=4g8pOFCwFrEpLx2NJbhL2nl_nrWaOwgbPCHx1G6P_tI,35949
20
20
  siat/capm_beta_test.py,sha256=ImR0c5mc4hIl714XmHztdl7qg8v1E2lycKyiqnFj6qs,1745
21
21
  siat/cmat_commons.py,sha256=Nj9Kf0alywaztVoMVeVVL_EZk5jRERJy8R8kBw88_Tg,38116
22
- siat/common.py,sha256=xmmx2jdxUky9qe1O33g1YB6PKqQOqMA4VcVe_ZKNppE,184004
22
+ siat/common.py,sha256=CEBH4Z510UGoxDRkv6z24MNqJKnv2NFHH52i5hqYTUw,184223
23
23
  siat/compare_cross.py,sha256=3iP9TH2h3w27F2ARZc7FjKcErYCzWRc-TPiymOyoVtw,24171
24
24
  siat/compare_cross_test.py,sha256=xra5XYmQGEtfIZL2h-GssdH2hLdFIhG3eoCrkDrL3gY,3473
25
25
  siat/concepts_iwencai.py,sha256=m1YEDtECRT6FqtzlKm91pt2I9d3Z_XoP59BtWdRdu8I,3061
@@ -29,20 +29,20 @@ siat/cryptocurrency.py,sha256=QSc4jK9VFlqBWVu-0th1BIMt8wC-5R5sWky3EaNupy0,27940
29
29
  siat/cryptocurrency_test.py,sha256=3AikTNJ7j-HwLGLIYEfyXZ3bLVuLeru9mwiwHQi2SdA,2669
30
30
  siat/derivative.py,sha256=qV8n09799eqLc26ojR6vN5n_X-xd7rGwdYjgq-wBih8,41483
31
31
  siat/economy-20230125.py,sha256=vxZZlPnLkh7SpGMVEPLwxjt0yYLSVmdZrO-s2NYLyoM,73848
32
- siat/economy.py,sha256=BFVQDxOTbuizyumpCgpZIauH6sqnwUXebpqRMmQCzys,84198
32
+ siat/economy.py,sha256=4HxAb44uQKyrYAMcS9RoSVc3xiHn7GSeliQ6ICQKoOc,84197
33
33
  siat/economy2.py,sha256=inmArHl43HFnSn6O4uY-xcsQY93IyMlFet3pQ7JpsjM,81089
34
34
  siat/economy_test.py,sha256=6vjNlPz7W125pJb7simCddobSEp3jmLIMvVkLRZ7zW8,13339
35
35
  siat/esg.py,sha256=GMhaonIKtvOK83rhpQUH5aJt2OL3HQBSVfD__Yw-0oo,19040
36
36
  siat/esg_test.py,sha256=Z9m6GUt8O7oHZSEG9aDYpGdvvrv2AiRJdHTiU6jqmZ0,2944
37
37
  siat/event_study.py,sha256=uQojKR5Mg3AC1PCSpx_CBHfUjJr0B4E-iCWxNF0Vif8,37178
38
38
  siat/exchange_bond_china.pickle,sha256=zDqdPrFacQ0nqjP_SuF6Yy87EgijIRsFvFroW7FAYYY,1265092
39
- siat/fama_french.py,sha256=aUTC-67t_CEPbLk4u79woW_zfZ7OCP6Fo4z5EdWCSkQ,48051
39
+ siat/fama_french.py,sha256=Af41ArHUIaYKGGZXuzQ3zXaYXxZKaFTG0WLwhW2NaEY,50968
40
40
  siat/fama_french_test.py,sha256=M4O23lBKsJxhWHRluwCb3l7HSEn3OFTjzGMpehcevRg,4678
41
41
  siat/fin_stmt2_yahoo.py,sha256=LGmspk0nKyz4X87MtcovZXUfMQkAvrWINuxR4HQ8PI8,41178
42
42
  siat/financial_base.py,sha256=A1rV7XQOVFpCXCV-T6Ge0QeF897hINiu0olN1XWeaFk,41287
43
43
  siat/financial_statements.py,sha256=7cv0z3djnfWsbnvW04ScrWSjCLEyUFrbGgQ6NtclyD0,25512
44
44
  siat/financial_statements_test.py,sha256=FLhx8JD-tVVWSBGux6AMz1jioXX4U4bp9DmgFHYXb_w,716
45
- siat/financials.py,sha256=jIkK8nhjQa5Z1SLeJ2rSQsSBswMgredvX2lZ6-1-Y7E,86267
45
+ siat/financials.py,sha256=__Fcb_3Xnvpm7iQD5kPRCwf_5_lRh74lp8ILIeUsClc,87685
46
46
  siat/financials2 - 副本.py,sha256=dKlNjIfKeoSy055fQ6E6TUj9HEoO5Ney9grD84J5kfk,14389
47
47
  siat/financials2.py,sha256=xCxqubwCNdfS7WyIb5IXTFonMZfw8FM9F8TCIkAruhk,58795
48
48
  siat/financials_china.py,sha256=iHF3lEESTK9DLWLBHFpyxn3S_dO2sNBE89xqaVYpNCw,192459
@@ -57,20 +57,20 @@ siat/financials_test.py,sha256=HJ3CPo_Xckz2wXi3AEP6ZNWCF1Duc1pLi0Y10USiImc,23829
57
57
  siat/fred_test.py,sha256=KF50ssSbsfpa_kT6iuomD0vG4eXztAcOasZxg1OGX5w,1201
58
58
  siat/fund.py,sha256=KS7NgzLLifwUJAQX4HpPi4CjLBamUcTpjsda4KSnfHE,24656
59
59
  siat/fund_china.pickle,sha256=x_nPPdwy7wzIhtZQOplgDyTSyyUdXy9lbNxWysq7N6k,2437771
60
- siat/fund_china.py,sha256=QovzNxO5EeWPZ_QbQvHtLthBls54NVat1vIEizXzBEc,136681
60
+ siat/fund_china.py,sha256=TEd007DAnod-86fNOPDxfSeNOzLd0rNoF5r08yDyClw,138292
61
61
  siat/fund_china_test.py,sha256=-Bh6m0J0GPpIbYXx-H2vpzJoNFI6pE2C2jVPa8DazgE,6649
62
62
  siat/fund_test.py,sha256=V4ADb8Gsp8gyeFTwcgRsJBpnUih_O-Q2V1ILc5oKjK8,1116
63
- siat/future_china.py,sha256=F-HsIf2Op8Z22RzTjet1g8COzldgnMjFNSXsAkeGyWo,17595
63
+ siat/future_china.py,sha256=_I7IeV8QEf9XembC1X06zQJhMCnP2RjSUG1E8Zx20VA,17638
64
64
  siat/future_china_test.py,sha256=BrSzmDVaOHki6rntOtosmRn-6dkfOBuLulJNqh7MOpc,1163
65
65
  siat/global_index_test.py,sha256=hnFp3wqqzzL-kAP8mgxDZ54Bd5Ijf6ENi5YJlGBgcXw,2402
66
66
  siat/google_authenticator.py,sha256=ZUbZR8OW0IAKDbcYtlqGqIpZdERpFor9NccFELxg9yI,1637
67
- siat/grafix.py,sha256=z5XaWWxAaPWje8zXfFJoHHgRtAHUfFCyzQRtdU3NdSw,142074
67
+ siat/grafix.py,sha256=HSCBSAvoYpP-WcuThvwiQ1--bba9_mtPu4y5X5WBk4A,145099
68
68
  siat/grafix_test.py,sha256=kXvcpLgQNO7wd30g_bWljLj5UH7bIVI0_dUtXbfiKR0,3150
69
69
  siat/holding_risk.py,sha256=uWRtMMJqKr-puQn26g6Fq5N3mFB70c0B99zLQug8hAo,30774
70
70
  siat/holding_risk_test.py,sha256=FRlw_9wFG98BYcg_cSj95HX5WZ1TvkGaOUdXD7-V86s,474
71
71
  siat/local_debug_test.py,sha256=CDAOffW1Rvs-TcNN5giWVvHMlch1w4dp-w5SIV9jXL0,3936
72
72
  siat/luchy_draw.py,sha256=8Ue-NKnvSVqINPY1eXat0NJat5MR-gex_K62aOYFdmA,20486
73
- siat/market_china.py,sha256=_2ienjsJsy-RAhdpnoBtRtPt8k_FVR8eDygywbFNnmM,50827
73
+ siat/market_china.py,sha256=UaT_uMAD6kzZPGo681kijIxxp90xdrOCr7zn8nmFPbA,50896
74
74
  siat/markowitz.py,sha256=PtQ_6rLyh5SEXyO7SCDyYChcgXl6ddcdgQ06HETjDVE,97990
75
75
  siat/markowitz2-20240620.py,sha256=irZAPnjaatFsKQmFRMENP-cO6bEUl2narYtkU5NKTWI,108019
76
76
  siat/markowitz2.py,sha256=2FT3yzub2vdmC87L495BECyTwJXY6xcOFflI1lSstmQ,123237
@@ -84,36 +84,36 @@ siat/markowitz_test2.py,sha256=FcVZqYU5va4567WGUVUJ7cMQdVbBGxeBAz82Y3BhCTI,2193
84
84
  siat/ml_cases.py,sha256=FYDk0O7l9hhHlbrlOVGgbH-h2DA503lhKFi9XugH1f0,86874
85
85
  siat/ml_cases_example.py,sha256=xRGb3YTQEDTOnaWNzZN_myU5umQnA2RdMNiPrxTmn9c,1673
86
86
  siat/ml_cases_example1.py,sha256=xRGb3YTQEDTOnaWNzZN_myU5umQnA2RdMNiPrxTmn9c,1673
87
- siat/option_china.py,sha256=qrPQtMVjWTLvGy9m6elWhJlJnoQm-auX_nLDWINMJho,121005
87
+ siat/option_china.py,sha256=-JBl_wnKIPLqusDd0yLQUoHIkUjVJCCuIlUzToX3D-o,122560
88
88
  siat/option_china_test.py,sha256=UQ-YUHUjoGBQyanLcM-yzqeEIUQP_gCQIeT0W6rnUnA,16355
89
- siat/option_pricing.py,sha256=vyQNgBsjcJi70Pa-fJTVVIGK_3jWh80tkd1ESnn3sE4,74069
89
+ siat/option_pricing.py,sha256=6Vm1MuvYPBY14mqFTS10dmWxAlMHmA5k5Ucfq20A66U,74145
90
90
  siat/option_pricing_test.py,sha256=eeorV5Ja5vjlRXnP6fWJHetGU5Vb8SnLopkC6RV3GfA,2203
91
91
  siat/option_sina_api_test.py,sha256=dn-k_wrQnAaNKHoROvWJEc7lqlU0bwiV2Aa4usWAFGM,5908
92
92
  siat/other_indexes.py,sha256=vx9am_kqogvKiJ82qrw5vqv-4wG4qdvHI0XCdAW9n7s,13842
93
93
  siat/proxy_test.py,sha256=erQJrmGs2X46z8Gb1h-7GYQ0rTUcaR8dxHExWoBz2eM,2610
94
94
  siat/quandl_test.py,sha256=EcPoXnLuqzPl5dKyVEZi3j3PJZFpsnU_iNPhLWC9p-A,1552
95
- siat/risk_adjusted_return.py,sha256=6F8CpKm-HKO4wfnndri0ew-D3lDAH1fs5O9K5cphoLg,55096
96
- siat/risk_adjusted_return2.py,sha256=VzW3GOumNAoHcZL-0eOdsQma9w6JRTmBKU7gXdsl5DQ,87136
95
+ siat/risk_adjusted_return.py,sha256=EfUnC1BADCHG0abEa_h3k4ADQQy_LyW7D9J7ZdPCh68,56680
96
+ siat/risk_adjusted_return2.py,sha256=U1iKADTnWjywCkABPtr6tICYY8zmiLZyuENMLV0yMZk,87216
97
97
  siat/risk_adjusted_return_test.py,sha256=m_VHL5AtT74cJv5i7taTeTfnkX48y0AFJk5phawyYWg,3416
98
- siat/risk_evaluation.py,sha256=HK6U2G85-AxjSoeARbmTuiCNwTVdPdB9Znfgvslo0Os,76455
98
+ siat/risk_evaluation.py,sha256=PrkAb1X7_6WcFXvEYuouXGq06puPbfo-3GHF1PTvly8,78399
99
99
  siat/risk_evaluation_test.py,sha256=YEXM96gKzTfwN4U61AS4Rr1tV7KgUvn4rRC6f3iMw9s,3731
100
100
  siat/risk_free_rate.py,sha256=IBuRqA2kppdZsW4D4fapW7vnM5HMEXOn95A5r9Pkwlo,12384
101
101
  siat/risk_free_rate_test.py,sha256=CpmhUf8aEAEZeNu4gvWP2Mz2dLoIgBX5bI41vfUBEr8,4285
102
- siat/sector_china.py,sha256=9zjdORWx5ia_gUezidhOKWmCnVDwWcnnjjugHudelaQ,157411
102
+ siat/sector_china.py,sha256=tUU-tM93HBp2ArWzULN8279pHVzHI535K_DAJLbr850,157690
103
103
  siat/sector_china_test.py,sha256=1wq7ef8Bb_L8F0h0W6FvyBrIcBTEbrTV7hljtpj49U4,5843
104
104
  siat/security_price.py,sha256=2oHskgiw41KMGfqtnA0i2YjNNV6cYgtlUK0j3YeuXWs,29185
105
105
  siat/security_price2.py,sha256=uC-wA6w3IlA9ZOJYINqIB7LexCbrnnqTkHTPuCSCwpo,27697
106
- siat/security_prices.py,sha256=C5fhNlkZF3EmDgc5V8saqWYSa6SLdJs1Ax7NQoBR_cg,116618
106
+ siat/security_prices.py,sha256=y9SDGA7IMAlMJeEkWnCmE_uueL4WCDeth6BMz825g5k,116704
107
107
  siat/security_prices_test.py,sha256=OEphoJ87NPKoNow1QA8EU_5MUYrJF-qKoWKNapVfZNI,10779
108
108
  siat/security_trend.py,sha256=o0vpWdrJkmODCP94X-Bvn-w7efHhj9HpUYBHtLl55D0,17240
109
109
  siat/security_trend2-20240620.py,sha256=QVnEcb7AyVbO77jVqfFsJffGXrX8pgJ9xCfoAKmWBPk,24854
110
- siat/security_trend2.py,sha256=EoDgGYgL-X3vT_YoJB_jA2VeC38jS4e9MxtQzy-C0QI,31955
110
+ siat/security_trend2.py,sha256=m6bAuP8ziw6RJ3hJ18r_gkRCiD9UUIYcqQbTlfuZ2pg,31768
111
111
  siat/setup.py,sha256=up65rQGLmTBkhtaMLowjoQXYmIsnycnm4g1SYmeQS6o,1335
112
112
  siat/shenwan index history test.py,sha256=JCVAzOSEldHalhSFa3pqD8JI_8_djPMQOxpkuYU-Esg,1418
113
- siat/stock.py,sha256=iSObjGX9D8HwVnqQZkpz-spzolqkUYBYWo9ylg37RLg,160210
113
+ siat/stock.py,sha256=TWZ7WguAXJSEUq0fiursA5hnunqWAltMuH1jEMLBjpk,160288
114
114
  siat/stock_advice_linear.py,sha256=-twT7IGP-NEplkL1WPSACcNJjggRB2j4mlAQCkzOAuo,31655
115
115
  siat/stock_base.py,sha256=uISvbRyOGy8p9QREA96CVydgflBkn5L3OXOGKl8oanc,1312
116
- siat/stock_china.py,sha256=WeHhZ7GlsKdkfkBoaXrk3hCmK6PmHjNcdJKUN2S2xEE,94967
116
+ siat/stock_china.py,sha256=vHIc2UuXIGRkRvyL4fjTaNAoyFaq022p9FxPah6dscI,96399
117
117
  siat/stock_china_test.py,sha256=eO4HWsSvc6qezl0LndjtL24lViEyrBjH_sx2c2Y2Q2M,1294
118
118
  siat/stock_info.pickle,sha256=XqcFwQrXoBXAzZnE6rnfpI7zETXZS2usqzsx2ff7MEg,1319005
119
119
  siat/stock_info_test.py,sha256=gfG3DbhDACbtD8wnv_R6zhj0t11XaC8NX8uLD9Qv3Fo,6122
@@ -136,7 +136,7 @@ siat/transaction_test.py,sha256=Z8g1LJCN4-mnUByXMUMoFmN0t105cbmsz2QmvSuIkbU,1858
136
136
  siat/translate-20230125.py,sha256=NPPSXhT38s5t9fzMvl_fvi4ckSB73ThLmZetVI-xGdU,117953
137
137
  siat/translate-20230206.py,sha256=-vtI125WyaJhmPotOpDAmclt_XnYVaWU9ByLWZ6FyYE,118133
138
138
  siat/translate-20230215.py,sha256=TJgtPE3n8IjljmZ4Pefy8dmHoNdFF-1zpML6BhA9FKE,121657
139
- siat/translate.py,sha256=m8mDVHilsw9nSIGBcvl_pS-aMy3W7UVKEZsLwhfuIEg,263300
139
+ siat/translate.py,sha256=E54jzmGRbBDP-drytcCyxdO89M9s30fmy-wIcQfuo7U,263346
140
140
  siat/translate_20240606.py,sha256=63IyHWEU3Uz9mjwyuAX3fqY4nUMdwh0ICQAgmgPXP7Y,215121
141
141
  siat/translate_241003_keep.py,sha256=un7Fqe1v35MXsja5exZgjmLzrZtt66NARZIGlyFuGGU,218747
142
142
  siat/universal_test.py,sha256=CDAOffW1Rvs-TcNN5giWVvHMlch1w4dp-w5SIV9jXL0,3936
@@ -145,8 +145,8 @@ siat/valuation_china.py,sha256=eSKIDckyjG8QkENlW_OKkqbQHno8pzDcomBO9iGNJVM,83079
145
145
  siat/valuation_market_china_test.py,sha256=gbJ0ioauuo4koTPH6WKUkqcXiQPafnbhU5eKJ6lpdLA,1571
146
146
  siat/var_model_validation.py,sha256=R0caWnuZarrRg9939hxh3vJIIpIyPfvelYmzFNZtPbo,14910
147
147
  siat/yf_name.py,sha256=laNKMTZ9hdenGX3IZ7G0a2RLBKEWtUQJFY9CWuk_fp8,24058
148
- siat-3.10.24.dist-info/LICENSE,sha256=NTEMMROY9_4U1szoKC3N2BLHcDd_o5uTgqdVH8tbApw,1071
149
- siat-3.10.24.dist-info/METADATA,sha256=SAbYZhLq09GVuxGheLXjWBJWUWUkHkzFWrqr5lJ53IE,8222
150
- siat-3.10.24.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
151
- siat-3.10.24.dist-info/top_level.txt,sha256=r1cVyL7AIKqeAmEJjNR8FMT20OmEzufDstC2gv3NvEY,5
152
- siat-3.10.24.dist-info/RECORD,,
148
+ siat-3.10.75.dist-info/LICENSE,sha256=NTEMMROY9_4U1szoKC3N2BLHcDd_o5uTgqdVH8tbApw,1071
149
+ siat-3.10.75.dist-info/METADATA,sha256=MAXu-a27L4Tc-tPQ10dA9HjnH8CrZJmNp_nkwM5xxBo,8222
150
+ siat-3.10.75.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
151
+ siat-3.10.75.dist-info/top_level.txt,sha256=r1cVyL7AIKqeAmEJjNR8FMT20OmEzufDstC2gv3NvEY,5
152
+ siat-3.10.75.dist-info/RECORD,,
File without changes