siat 3.4.6__py3-none-any.whl → 3.4.7__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.
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: siat
|
3
|
-
Version: 3.4.
|
3
|
+
Version: 3.4.7
|
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
|
@@ -35,34 +35,37 @@ Requires-Dist: itables
|
|
35
35
|
Requires-Dist: py-trans
|
36
36
|
Requires-Dist: bottleneck
|
37
37
|
|
38
|
-
|
38
|
+
<center><font size=6>Welcome to SIAT
|
39
39
|
|
40
|
-
#
|
41
|
-
|
42
|
-
|
43
|
-
This version unifies the architecture of stock, bond and investment fund together.
|
40
|
+
# What is siat?
|
41
|
+
siat is a Python plug-in for security investment analysis, specially designed for teaching and learning purposes in universities for undergraduate and postgraduate programs.
|
44
42
|
|
45
|
-
|
43
|
+
Most of the results by siat are in the form of figures and/or tables.
|
44
|
+
# Version history
|
46
45
|
Version structure: X.Y.Z
|
47
46
|
|
48
47
|
X is the major version for architecture upgrade only.
|
49
48
|
Y is the functional version for functional enhancement.
|
50
49
|
Z is the minor version just for bug fixing.
|
51
|
-
# What is siat?
|
52
|
-
siat is a Python plug-in, which stands for security investment analysis toolkit.
|
53
|
-
|
54
|
-
It is specially designed for teaching and learning purposes on security investment in universities for undergraduate and postgraduate programs.
|
55
50
|
# Quick examples of using siat
|
56
51
|
|
57
52
|
|
58
53
|
```python
|
54
|
+
# Enable siat
|
59
55
|
from siat import *
|
60
56
|
```
|
61
57
|
|
58
|
+
|
59
|
+
```python
|
60
|
+
# Set language to English, default is Chinese
|
61
|
+
set_language("English")
|
62
|
+
```
|
63
|
+
|
62
64
|
## Example 1: Apple stock price for the recent month
|
63
65
|
|
64
66
|
|
65
67
|
```python
|
68
|
+
# Simple way: show Apple's stock price in recent month
|
66
69
|
apple=security_trend("AAPL")
|
67
70
|
```
|
68
71
|
You may expect to more information, such as price trend in a recent year (MRY), with the high/low point, current price and average price, like below:
|
@@ -96,6 +99,7 @@ comp=security_trend(['AAPL','MSFT','NVDA'],
|
|
96
99
|
apple=security_technical("AAPL",
|
97
100
|
technical="Bollinger",
|
98
101
|
start="MRQ",
|
102
|
+
facecolor="white",
|
99
103
|
loc1="upper left", loc2="lower right")
|
100
104
|
```
|
101
105
|
|
@@ -111,7 +115,7 @@ apple=security_technical2("AAPL",
|
|
111
115
|
loc1="upper left", loc2="lower right")
|
112
116
|
```
|
113
117
|
|
114
|
-
# What
|
118
|
+
# What security product does siat support?
|
115
119
|
1. Public company profile: world-wide
|
116
120
|
2. Stock & stock market index: world-wide
|
117
121
|
3. Stock valuation: primarily in China (mainland and HK) and the U.S.
|
@@ -125,9 +129,9 @@ apple=security_technical2("AAPL",
|
|
125
129
|
11. Balance sheet: in China (full function) and world-wide (basic function)
|
126
130
|
12. Income statement: in China mainland (full function) and world-wide (basic function)
|
127
131
|
13. Cash flow statement: in China mainland (full function) and world-wide (basic function)
|
128
|
-
14.
|
132
|
+
14. DuPont Identity: world-wide
|
129
133
|
15. Sector trend and valuation: primarily in China
|
130
|
-
# What
|
134
|
+
# What analytical methodology does siat support?
|
131
135
|
1. Trend analysis
|
132
136
|
2. Panel comparation
|
133
137
|
3. Return analysis: rolling returns, holding period returns
|
@@ -184,9 +188,21 @@ upgrade_siat(alternative="tsinghua")
|
|
184
188
|
|
185
189
|
upgrade_siat(alternative="alibaba")
|
186
190
|
|
187
|
-
If the above methods do not work for
|
191
|
+
If the above methods do not work for your environment, you have to goto the traditional ways to use command-line script, such as:
|
188
192
|
|
189
193
|
pip install --upgrade siat
|
194
|
+
|
195
|
+
*** For users in China
|
196
|
+
The pypi mirror websites may provide siat installing and upgrading in a much faster speed in the following commands: taking aliyun as an example
|
197
|
+
|
198
|
+
pip install siat -i https://mirrors.aliyun.com/pypi/simple/
|
199
|
+
|
200
|
+
pip install --upgrade siat https://mirrors.aliyun.com/pypi/simple/
|
201
|
+
|
202
|
+
*** Warning
|
203
|
+
1. The pip command itself may need upgrade as well.
|
204
|
+
2. The pip command sometimes may have conflicts with some vpn programs.
|
205
|
+
If in this case, try quit vpn program, and try again.
|
190
206
|
# Are there more detailed case studies on using siat?
|
191
207
|
YES!
|
192
208
|
|
@@ -197,7 +213,3 @@ https://space.bilibili.com/284812153
|
|
197
213
|
Welcome to follow the channel!
|
198
214
|
# How to report a bug or look for help?
|
199
215
|
Write to the author, Prof. WANG Dehong, wdehong2000@163.com
|
200
|
-
|
201
|
-
```python
|
202
|
-
|
203
|
-
```
|
@@ -139,7 +139,7 @@ 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
141
|
siat/yf_name.py,sha256=H1EM8YYXA8nQHIqsJlso0I3HKPiJLT3QujO4gRVQXWs,13945
|
142
|
-
siat-3.4.
|
143
|
-
siat-3.4.
|
144
|
-
siat-3.4.
|
145
|
-
siat-3.4.
|
142
|
+
siat-3.4.7.dist-info/METADATA,sha256=CBhvM44KsB402bBfbLnm-GCCgCv3gKurQdlBVG6s7z8,7682
|
143
|
+
siat-3.4.7.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
144
|
+
siat-3.4.7.dist-info/top_level.txt,sha256=r1cVyL7AIKqeAmEJjNR8FMT20OmEzufDstC2gv3NvEY,5
|
145
|
+
siat-3.4.7.dist-info/RECORD,,
|
File without changes
|