Metadata-Version: 2.1
Name: limitcalc
Version: 0.0.1
Summary: Calculate the limit up price and limit down price of a ticker
Home-page: https://github.com/lyenliang/limitcalc
Author: lyenliang
Author-email: lyenliang@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

計算股市漲停、跌停價的工具

# 使用範例

```
import limitcalc

limitcalc.get_limit_up_price(58) # 回傳 63.8，63.8 是 58 的漲停價

limitcalc.get_limit_down_price(96) # 回傳 86.4，86.4 是 96 的跌停價 
```

