siat 3.2.51__py3-none-any.whl → 3.2.52__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 +16 -17
- siat/stock_technical.py +40 -31
- {siat-3.2.51.dist-info → siat-3.2.52.dist-info}/METADATA +1 -1
- {siat-3.2.51.dist-info → siat-3.2.52.dist-info}/RECORD +6 -6
- {siat-3.2.51.dist-info → siat-3.2.52.dist-info}/WHEEL +0 -0
- {siat-3.2.51.dist-info → siat-3.2.52.dist-info}/top_level.txt +0 -0
siat/security_prices.py
CHANGED
@@ -960,7 +960,7 @@ def get_price_ak_us(symbol, fromdate, todate, adjust=""):
|
|
960
960
|
"""
|
961
961
|
抓取单个美股股价,不能处理股指
|
962
962
|
"""
|
963
|
-
import pandas as pd
|
963
|
+
import pandas as pd #此处需要,去掉会出错!
|
964
964
|
DEBUG=False
|
965
965
|
|
966
966
|
#检查日期期间
|
@@ -975,26 +975,25 @@ def get_price_ak_us(symbol, fromdate, todate, adjust=""):
|
|
975
975
|
import akshare as ak
|
976
976
|
if DEBUG:
|
977
977
|
print(" Searching info in Sina for",symbol,"... ...")
|
978
|
-
|
979
|
-
|
980
|
-
|
981
|
-
|
982
|
-
|
983
|
-
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
|
992
|
-
"""
|
978
|
+
try:
|
979
|
+
if adjust=='':
|
980
|
+
df=ak.stock_us_daily(symbol=symbol,adjust=adjust)
|
981
|
+
elif adjust=='Adj_only':
|
982
|
+
df=ak.stock_us_daily(symbol=symbol,adjust='qfq')
|
983
|
+
df['Adj Close']=df['close']
|
984
|
+
|
985
|
+
else:
|
986
|
+
#分别获取收盘价和复权价,并合成
|
987
|
+
dffqno=ak.stock_us_daily(symbol=symbol,adjust='')
|
988
|
+
dffq=ak.stock_us_daily(symbol=symbol,adjust='qfq')
|
989
|
+
dffq.rename(columns={'close':'Adj Close'},inplace=True)
|
990
|
+
|
991
|
+
df=pd.merge(dffqno,dffq[['date','Adj Close']],on=['date'])
|
993
992
|
except:
|
994
993
|
if DEBUG:
|
995
994
|
print(" #Error(get_price_ak_us): no info found for",symbol)
|
996
995
|
return None
|
997
|
-
|
996
|
+
|
998
997
|
#去掉可能出现的时区信息,必须使用datetime中的tz_localize
|
999
998
|
df['date']=pd.to_datetime(df['date'])
|
1000
999
|
#df['date']=df['date'].tz_localize(None)
|
siat/stock_technical.py
CHANGED
@@ -867,7 +867,7 @@ def security_MACD(ticker,start='default',end='default', \
|
|
867
867
|
resample_freq='6H',smooth=True,linewidth=1.5, \
|
868
868
|
loc1='lower left',loc2='lower right', \
|
869
869
|
graph=['ALL'],printout=True,ticker_type='auto',source='auto', \
|
870
|
-
price_line_color='red'):
|
870
|
+
price_line_color='red',facecolor='k'):
|
871
871
|
"""
|
872
872
|
套壳函数:可用于股票、交易所债券、交易所基金、部分期货期权(限美股)
|
873
873
|
"""
|
@@ -878,7 +878,7 @@ def security_MACD(ticker,start='default',end='default', \
|
|
878
878
|
resample_freq=resample_freq,smooth=smooth,linewidth=linewidth, \
|
879
879
|
loc1=loc1,loc2=loc2, \
|
880
880
|
graph=graph,printout=printout,ticker_type=ticker_type,source=source, \
|
881
|
-
price_line_color=price_line_color)
|
881
|
+
price_line_color=price_line_color,facecolor=facecolor)
|
882
882
|
return df
|
883
883
|
|
884
884
|
|
@@ -888,7 +888,7 @@ def stock_MACD(ticker,start='default',end='default', \
|
|
888
888
|
resample_freq='H',smooth=True,linewidth=1.5, \
|
889
889
|
loc1='lower left',loc2='lower right', \
|
890
890
|
graph=['ALL'],printout=True,ticker_type='auto',source='auto', \
|
891
|
-
price_line_color='red'):
|
891
|
+
price_line_color='red',facecolor='k'):
|
892
892
|
"""
|
893
893
|
功能:计算股票的技术分析指标MACD
|
894
894
|
输入:df,四种股价Open/Close/High/Low,成交量Volume
|
@@ -991,7 +991,7 @@ def stock_MACD(ticker,start='default',end='default', \
|
|
991
991
|
|
992
992
|
print(" Rendering graphics ...")
|
993
993
|
draw_lines(df2,y_label,x_label,axhline_value,axhline_label,title_txt, \
|
994
|
-
data_label=False,resample_freq=resample_freq,smooth=smooth,linewidth=linewidth*2)
|
994
|
+
data_label=False,resample_freq=resample_freq,smooth=smooth,linewidth=linewidth*2,facecolor=facecolor)
|
995
995
|
|
996
996
|
if printout:
|
997
997
|
if len(dft3)!=0:
|
@@ -1046,7 +1046,7 @@ def stock_MACD(ticker,start='default',end='default', \
|
|
1046
1046
|
df3.rename(columns={'Close':text_lang('收盘价','Close')},inplace=True)
|
1047
1047
|
title_txt=text_lang("证券价格走势分析:","Security Trend: ")+ticker_name(ticker,ticker_type)+text_lang(",指数移动平均线","Exponential MA Line")
|
1048
1048
|
draw_lines(df3,y_label,x_label,axhline_value,axhline_label,title_txt, \
|
1049
|
-
data_label=False,resample_freq=resample_freq,smooth=smooth,linewidth=linewidth*2)
|
1049
|
+
data_label=False,resample_freq=resample_freq,smooth=smooth,linewidth=linewidth*2,facecolor=facecolor)
|
1050
1050
|
|
1051
1051
|
if printout:
|
1052
1052
|
if len(dft3)!=0:
|
@@ -1120,7 +1120,8 @@ def stock_MACD(ticker,start='default',end='default', \
|
|
1120
1120
|
# 设置绘图区的背景颜色为黑色
|
1121
1121
|
fig=plt.figure()
|
1122
1122
|
ax=fig.add_subplot(111)
|
1123
|
-
ax.patch.set_facecolor('black')
|
1123
|
+
#ax.patch.set_facecolor('black')
|
1124
|
+
ax.patch.set_facecolor(color=facecolor)
|
1124
1125
|
|
1125
1126
|
# 绘制曲线
|
1126
1127
|
ax.plot(df4['快线DIF'],label=text_lang('快线DIF','DIF(Fast line)'),linewidth=linewidth*2,color='white')
|
@@ -1241,7 +1242,7 @@ def security_RSI(ticker,start='default',end='default', \
|
|
1241
1242
|
resample_freq='6H',smooth=True,linewidth=1.5, \
|
1242
1243
|
loc1='lower left',loc2='lower right', \
|
1243
1244
|
graph=['ALL'],printout=True,ticker_type='auto',source='auto', \
|
1244
|
-
price_line_color='red'):
|
1245
|
+
price_line_color='red',facecolor='k'):
|
1245
1246
|
"""
|
1246
1247
|
套壳函数,除了股票,还可用于交易所债券和交易所基金(如ETF和REITS)
|
1247
1248
|
"""
|
@@ -1250,7 +1251,7 @@ def security_RSI(ticker,start='default',end='default', \
|
|
1250
1251
|
resample_freq=resample_freq,smooth=smooth,linewidth=linewidth, \
|
1251
1252
|
loc1=loc1,loc2=loc2, \
|
1252
1253
|
graph=graph,printout=printout,ticker_type=ticker_type,source=source, \
|
1253
|
-
price_line_color=price_line_color)
|
1254
|
+
price_line_color=price_line_color,facecolor=facecolor)
|
1254
1255
|
return df
|
1255
1256
|
|
1256
1257
|
|
@@ -1259,7 +1260,7 @@ def stock_RSI(ticker,start='default',end='default', \
|
|
1259
1260
|
resample_freq='H',smooth=True,linewidth=1.5, \
|
1260
1261
|
loc1='lower left',loc2='lower right', \
|
1261
1262
|
graph=['ALL'],printout=True,ticker_type='auto',source='auto', \
|
1262
|
-
price_line_color='red'):
|
1263
|
+
price_line_color='red',facecolor='k'):
|
1263
1264
|
"""
|
1264
1265
|
功能:计算股票的技术分析指标RSI
|
1265
1266
|
输入:df,四种股价Open/Close/High/Low,成交量Volume
|
@@ -1368,7 +1369,7 @@ def stock_RSI(ticker,start='default',end='default', \
|
|
1368
1369
|
# 设置绘图区的背景颜色为黑色
|
1369
1370
|
fig=plt.figure()
|
1370
1371
|
ax=fig.add_subplot(111)
|
1371
|
-
ax.patch.set_facecolor(
|
1372
|
+
ax.patch.set_facecolor(color=facecolor)
|
1372
1373
|
|
1373
1374
|
# 绘制曲线
|
1374
1375
|
if ('RSI1' in graph) or ('ALL' in graph):
|
@@ -1379,7 +1380,8 @@ def stock_RSI(ticker,start='default',end='default', \
|
|
1379
1380
|
ax.plot(df4['RSI3'],label=text_lang('慢速(月)线RSI3','RSI3(1 month, Slow line)'),linewidth=linewidth*2,color='white')
|
1380
1381
|
|
1381
1382
|
# 绘制水平辅助线
|
1382
|
-
hl_linestyle_list=['dashed','-.','dotted']
|
1383
|
+
#hl_linestyle_list=['dashed','-.','dotted']
|
1384
|
+
hl_linestyle_list=['dotted','dotted','dotted','dotted','dotted','dotted']
|
1383
1385
|
#plt.axhline(y=0,label='指标零线',color='cyan',linestyle=':',linewidth=linewidth*2)
|
1384
1386
|
for hl in RSI_lines:
|
1385
1387
|
pos=RSI_lines.index(hl)
|
@@ -1489,7 +1491,7 @@ def security_KDJ(ticker,start='default',end='default', \
|
|
1489
1491
|
resample_freq='6H',smooth=True,linewidth=1.5, \
|
1490
1492
|
loc1='lower left',loc2='lower right', \
|
1491
1493
|
graph=['ALL'],printout=True,ticker_type='auto',source='auto', \
|
1492
|
-
price_line_color='red'):
|
1494
|
+
price_line_color='red',facecolor='k'):
|
1493
1495
|
"""
|
1494
1496
|
套壳函数
|
1495
1497
|
"""
|
@@ -1498,7 +1500,7 @@ def security_KDJ(ticker,start='default',end='default', \
|
|
1498
1500
|
resample_freq=resample_freq,smooth=smooth,linewidth=linewidth, \
|
1499
1501
|
loc1=loc1,loc2=loc2, \
|
1500
1502
|
graph=graph,printout=printout,ticker_type=ticker_type,source=source, \
|
1501
|
-
price_line_color=price_line_color)
|
1503
|
+
price_line_color=price_line_color,facecolor=facecolor)
|
1502
1504
|
return df
|
1503
1505
|
|
1504
1506
|
|
@@ -1507,7 +1509,7 @@ def stock_KDJ(ticker,start='default',end='default', \
|
|
1507
1509
|
resample_freq='H',smooth=True,linewidth=1.5, \
|
1508
1510
|
loc1='lower left',loc2='lower right', \
|
1509
1511
|
graph=['ALL'],printout=True,ticker_type='auto',source='auto', \
|
1510
|
-
price_line_color='red'):
|
1512
|
+
price_line_color='red',facecolor='k'):
|
1511
1513
|
"""
|
1512
1514
|
功能:计算股票的技术分析指标KDJ
|
1513
1515
|
输入:df,四种股价Open/Close/High/Low,成交量Volume
|
@@ -1637,7 +1639,7 @@ def stock_KDJ(ticker,start='default',end='default', \
|
|
1637
1639
|
# 设置绘图区的背景颜色为黑色
|
1638
1640
|
fig=plt.figure()
|
1639
1641
|
ax=fig.add_subplot(111)
|
1640
|
-
ax.patch.set_facecolor(
|
1642
|
+
ax.patch.set_facecolor(color=facecolor)
|
1641
1643
|
|
1642
1644
|
# 绘制曲线
|
1643
1645
|
if ('K' in graph) or ('ALL' in graph):
|
@@ -1658,8 +1660,13 @@ def stock_KDJ(ticker,start='default',end='default', \
|
|
1658
1660
|
minJ=df4['J'].min()
|
1659
1661
|
minKDJ=min(minK,minD,minJ)
|
1660
1662
|
|
1663
|
+
"""
|
1661
1664
|
hl_linestyle_list=['dashed','dashed','-.','dotted','dotted']
|
1662
1665
|
hl_color_list=['red','red','white','cyan','cyan']
|
1666
|
+
"""
|
1667
|
+
hl_linestyle_list=['dotted','dotted','dotted','dotted','dotted']
|
1668
|
+
hl_color_list=['cyan','cyan','cyan','cyan','cyan']
|
1669
|
+
|
1663
1670
|
#plt.axhline(y=0,label='指标零线',color='cyan',linestyle=':',linewidth=linewidth*2)
|
1664
1671
|
for hl in KDJ_lines:
|
1665
1672
|
draw=True
|
@@ -2159,20 +2166,20 @@ if __name__ =="__main__":
|
|
2159
2166
|
def security_Bollinger(ticker,start='default',end='default',boll_days=20, \
|
2160
2167
|
graph=True,smooth=True,loc='best', \
|
2161
2168
|
date_range=False,date_freq=False,annotate=False, \
|
2162
|
-
ticker_type='auto',source='auto'):
|
2169
|
+
ticker_type='auto',source='auto',facecolor='white'):
|
2163
2170
|
"""
|
2164
2171
|
套壳函数,为了与security_MACD/RSI/KDJ保持相似
|
2165
2172
|
"""
|
2166
2173
|
df=stock_Bollinger(ticker=ticker,start=start,end=end,boll_days=boll_days, \
|
2167
2174
|
graph=graph,smooth=smooth,loc=loc, \
|
2168
2175
|
date_range=date_range,date_freq=date_freq, \
|
2169
|
-
annotate=annotate,ticker_type=ticker_type,source=source)
|
2176
|
+
annotate=annotate,ticker_type=ticker_type,source=source,facecolor=facecolor)
|
2170
2177
|
return df
|
2171
2178
|
|
2172
2179
|
def stock_Bollinger(ticker,start='default',end='default',boll_days=20, \
|
2173
2180
|
graph=True,smooth=True,loc='best', \
|
2174
2181
|
date_range=False,date_freq=False,annotate=False, \
|
2175
|
-
mark_end=True,ticker_type='auto',source='auto'):
|
2182
|
+
mark_end=True,ticker_type='auto',source='auto',facecolor='white'):
|
2176
2183
|
"""
|
2177
2184
|
套壳函数,为了与stock_MACD/RSI/KDJ保持相似
|
2178
2185
|
"""
|
@@ -2200,14 +2207,14 @@ def stock_Bollinger(ticker,start='default',end='default',boll_days=20, \
|
|
2200
2207
|
df=security_bollinger(ticker=ticker,fromdate=start,todate=end,boll_days=boll_days, \
|
2201
2208
|
graph=graph,smooth=smooth,loc=loc, \
|
2202
2209
|
date_range=date_range,date_freq=date_freq,annotate=annotate, \
|
2203
|
-
mark_end=mark_end,ticker_type=ticker_type,source=source)
|
2210
|
+
mark_end=mark_end,ticker_type=ticker_type,source=source,facecolor=facecolor)
|
2204
2211
|
return df
|
2205
2212
|
|
2206
2213
|
|
2207
2214
|
def security_bollinger(ticker,fromdate,todate,boll_days=20, \
|
2208
2215
|
graph=True,smooth=True,loc='best', \
|
2209
2216
|
date_range=False,date_freq=False,annotate=False, \
|
2210
|
-
mark_end=True,ticker_type='auto',source='auto'):
|
2217
|
+
mark_end=True,ticker_type='auto',source='auto',facecolor='white'):
|
2211
2218
|
"""
|
2212
2219
|
功能:单个证券,绘制布林带
|
2213
2220
|
date_range=False:指定开始结束日期绘图
|
@@ -2267,7 +2274,8 @@ def security_bollinger(ticker,fromdate,todate,boll_days=20, \
|
|
2267
2274
|
data_label=False,resample_freq='6H',smooth=smooth, \
|
2268
2275
|
date_range=date_range,date_freq=date_freq,date_fmt='%Y-%m-%d', \
|
2269
2276
|
colorlist=colorlist,lslist=lslist,lwlist=lwlist, \
|
2270
|
-
band_area=[text_lang('上(压力)线','Upper Line'),text_lang('下(支撑)线','Lower Line')],
|
2277
|
+
band_area=[text_lang('上(压力)线','Upper Line'),text_lang('下(支撑)线','Lower Line')], \
|
2278
|
+
mark_end=mark_end,loc=loc,facecolor=facecolor)
|
2271
2279
|
|
2272
2280
|
return df1
|
2273
2281
|
|
@@ -2291,7 +2299,7 @@ def security_Bubble(ticker,start='default',end='default',boll_years=7, \
|
|
2291
2299
|
indicator='MV', \
|
2292
2300
|
graph=True,smooth=True,loc='best', \
|
2293
2301
|
date_range=False,date_freq=False,annotate=False, \
|
2294
|
-
mark_end=True):
|
2302
|
+
mark_end=True,facecolor='whitesmoke'):
|
2295
2303
|
"""
|
2296
2304
|
套壳函数,为了与security_MACD/RSI/KDJ保持相似
|
2297
2305
|
"""
|
@@ -2320,7 +2328,7 @@ def security_Bubble(ticker,start='default',end='default',boll_years=7, \
|
|
2320
2328
|
indicator=indicator, \
|
2321
2329
|
graph=graph,smooth=smooth,loc=loc, \
|
2322
2330
|
date_range=date_range,date_freq=date_freq,annotate=annotate, \
|
2323
|
-
mark_end=mark_end)
|
2331
|
+
mark_end=mark_end,facecolor=facecolor)
|
2324
2332
|
return df
|
2325
2333
|
|
2326
2334
|
if __name__ =="__main__":
|
@@ -2335,7 +2343,7 @@ def security_bubble(ticker,fromdate,todate,boll_years=7, \
|
|
2335
2343
|
indicator='MV', \
|
2336
2344
|
graph=True,smooth=True,loc='best', \
|
2337
2345
|
date_range=False,date_freq=False,annotate=False, \
|
2338
|
-
mark_end=True):
|
2346
|
+
mark_end=True,facecolor='whitesmoke'):
|
2339
2347
|
"""
|
2340
2348
|
功能:单个证券,绘制估值布林带(MV, PE, PB)
|
2341
2349
|
date_range=False:指定开始结束日期绘图
|
@@ -2444,7 +2452,7 @@ def security_bubble(ticker,fromdate,todate,boll_years=7, \
|
|
2444
2452
|
date_range=date_range,date_freq=date_freq,date_fmt='%Y-%m-%d', \
|
2445
2453
|
colorlist=colorlist,lslist=lslist,lwlist=lwlist, \
|
2446
2454
|
band_area=['上(压力)线','下(支撑)线'],loc=loc, \
|
2447
|
-
mark_end=mark_end)
|
2455
|
+
mark_end=mark_end,facecolor=facecolor)
|
2448
2456
|
|
2449
2457
|
return df1
|
2450
2458
|
|
@@ -2478,7 +2486,8 @@ def security_technical(ticker,start='default',end='default', \
|
|
2478
2486
|
date_range=False,date_freq=False,annotate=False, \
|
2479
2487
|
technical=['MACD'],indicator='Close', \
|
2480
2488
|
ticker_type='auto',source='auto', \
|
2481
|
-
price_line_color='red'
|
2489
|
+
price_line_color='red', \
|
2490
|
+
facecolor='k'):
|
2482
2491
|
|
2483
2492
|
"""
|
2484
2493
|
功能:技术分析中的MACD/RSI/KDJ/布林带,支持教学演示,支持参数调节。
|
@@ -2538,7 +2547,7 @@ def security_technical(ticker,start='default',end='default', \
|
|
2538
2547
|
resample_freq=resample_freq,smooth=smooth,linewidth=linewidth, \
|
2539
2548
|
loc1=loc1,loc2=loc2, \
|
2540
2549
|
graph=graph1,printout=printout,ticker_type=ticker_type,source=source, \
|
2541
|
-
price_line_color=price_line_color)
|
2550
|
+
price_line_color=price_line_color,facecolor=facecolor)
|
2542
2551
|
|
2543
2552
|
if 'RSI' in technical1:
|
2544
2553
|
df=security_RSI(ticker=ticker,start=fromdate,end=todate, \
|
@@ -2546,7 +2555,7 @@ def security_technical(ticker,start='default',end='default', \
|
|
2546
2555
|
resample_freq=resample_freq,smooth=smooth,linewidth=linewidth, \
|
2547
2556
|
loc1=loc1,loc2=loc2, \
|
2548
2557
|
graph=graph1,printout=printout,ticker_type=ticker_type,source=source, \
|
2549
|
-
price_line_color=price_line_color)
|
2558
|
+
price_line_color=price_line_color,facecolor=facecolor)
|
2550
2559
|
|
2551
2560
|
if 'KDJ' in technical1:
|
2552
2561
|
df=security_KDJ(ticker=ticker,start=fromdate,end=todate, \
|
@@ -2554,13 +2563,13 @@ def security_technical(ticker,start='default',end='default', \
|
|
2554
2563
|
resample_freq=resample_freq,smooth=smooth,linewidth=linewidth, \
|
2555
2564
|
loc1=loc1,loc2=loc2, \
|
2556
2565
|
graph=graph1,printout=printout,ticker_type=ticker_type,source=source, \
|
2557
|
-
price_line_color=price_line_color)
|
2566
|
+
price_line_color=price_line_color,facecolor=facecolor)
|
2558
2567
|
|
2559
2568
|
if 'Bollinger' in technical1 and 'Close' in indicator1:
|
2560
2569
|
df=security_Bollinger(ticker=ticker,start=fromdate,end=todate,boll_days=boll_days, \
|
2561
2570
|
graph=True,smooth=smooth,loc=loc1, \
|
2562
2571
|
date_range=date_range,date_freq=date_freq,annotate=annotate, \
|
2563
|
-
ticker_type=ticker_type,source=source)
|
2572
|
+
ticker_type=ticker_type,source=source,facecolor=facecolor)
|
2564
2573
|
|
2565
2574
|
"""
|
2566
2575
|
if 'Bollinger' in technical1 and 'MV' in indicator1:
|
@@ -2596,7 +2605,7 @@ def security_technical(ticker,start='default',end='default', \
|
|
2596
2605
|
df=security_Bubble(ticker=ticker,start=fromdate,end=todate,boll_years=boll_years, \
|
2597
2606
|
indicator=val, \
|
2598
2607
|
graph=True,smooth=smooth,loc=loc1, \
|
2599
|
-
date_range=date_range,date_freq=date_freq,annotate=annotate)
|
2608
|
+
date_range=date_range,date_freq=date_freq,annotate=annotate,facecolor=facecolor)
|
2600
2609
|
|
2601
2610
|
return df
|
2602
2611
|
|
@@ -98,7 +98,7 @@ siat/sector_china.py,sha256=nP6kfYsnaQWZj8dK-zklwSDW8FDS-obZWp_zL0ec2Ig,118603
|
|
98
98
|
siat/sector_china_test.py,sha256=1wq7ef8Bb_L8F0h0W6FvyBrIcBTEbrTV7hljtpj49U4,5843
|
99
99
|
siat/security_price.py,sha256=2oHskgiw41KMGfqtnA0i2YjNNV6cYgtlUK0j3YeuXWs,29185
|
100
100
|
siat/security_price2.py,sha256=4xvc9AzRhLKJMu6AxVzIqcn1-NrHoeCF2Ao2p9nwYjU,25978
|
101
|
-
siat/security_prices.py,sha256=
|
101
|
+
siat/security_prices.py,sha256=LqTrS20mTmM_ACENOXU5qrLmxczGtxnuziAdAynSG_Q,105871
|
102
102
|
siat/security_prices_test.py,sha256=OEphoJ87NPKoNow1QA8EU_5MUYrJF-qKoWKNapVfZNI,10779
|
103
103
|
siat/security_trend.py,sha256=o0vpWdrJkmODCP94X-Bvn-w7efHhj9HpUYBHtLl55D0,17240
|
104
104
|
siat/security_trend2-20240620.py,sha256=QVnEcb7AyVbO77jVqfFsJffGXrX8pgJ9xCfoAKmWBPk,24854
|
@@ -117,7 +117,7 @@ siat/stock_prices_kneighbors.py,sha256=WfZvo5EyeBsm-T37zDj7Sl9dPSRq5Bx4JxIJ9IUum
|
|
117
117
|
siat/stock_prices_linear.py,sha256=-OUKRr27L2aStQgJSlJOrJ4gay_G7P-m-7t7cU2Yoqk,13991
|
118
118
|
siat/stock_profile.py,sha256=B3eIwzEmiCqiCaxIlhfdEPsQBoW1PFOe1hkiY3mVF6Y,26038
|
119
119
|
siat/stock_technical-20240620.py,sha256=A4x18mZgYSA8SSiDz4u_O3gd5oVRgbI6JIiBfFY0tVw,116013
|
120
|
-
siat/stock_technical.py,sha256=
|
120
|
+
siat/stock_technical.py,sha256=GsW1lciBEH-OEndXyFCUI6BB8uo12RwhAnuS7ND0mgg,134190
|
121
121
|
siat/stock_test.py,sha256=E9YJAvOw1VEGJSDI4IZuEjl0tGoisOIlN-g9UqA_IZE,19475
|
122
122
|
siat/stooq.py,sha256=dOc_S5HLrYg48YAKTCs1eX8UTJOOkPM8qLL2KupqlLY,2470
|
123
123
|
siat/temp.py,sha256=gbJ0ioauuo4koTPH6WKUkqcXiQPafnbhU5eKJ6lpdLA,1571
|
@@ -138,7 +138,7 @@ siat/valuation.py,sha256=NKfeZMdDJOW42oLVHob6eSVBXUqlN1OCnnzwyGAst8c,48855
|
|
138
138
|
siat/valuation_china.py,sha256=EkZQaVkoBjM0c4MCNbaX-bMnlG0e3FXeaWczZDnkptU,67784
|
139
139
|
siat/valuation_market_china_test.py,sha256=gbJ0ioauuo4koTPH6WKUkqcXiQPafnbhU5eKJ6lpdLA,1571
|
140
140
|
siat/var_model_validation.py,sha256=R0caWnuZarrRg9939hxh3vJIIpIyPfvelYmzFNZtPbo,14910
|
141
|
-
siat-3.2.
|
142
|
-
siat-3.2.
|
143
|
-
siat-3.2.
|
144
|
-
siat-3.2.
|
141
|
+
siat-3.2.52.dist-info/METADATA,sha256=cbql3N27Ey8OhncmGulNMr8S7kVrcY92OQAwrz5w-8g,7310
|
142
|
+
siat-3.2.52.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
143
|
+
siat-3.2.52.dist-info/top_level.txt,sha256=r1cVyL7AIKqeAmEJjNR8FMT20OmEzufDstC2gv3NvEY,5
|
144
|
+
siat-3.2.52.dist-info/RECORD,,
|
File without changes
|
File without changes
|