├── .gitignore ├── GuGu ├── __init__.py ├── base.py ├── billboard.py ├── classify.py ├── config.py ├── lowriskintarb.py ├── macro.py ├── marketdata.py ├── reference.py ├── stockdata.py ├── stockinfo.py └── utility.py ├── LICENSE ├── README.md ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | build 4 | dist 5 | GuGu.egg-info 6 | -------------------------------------------------------------------------------- /GuGu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdnyfcuso/GuGu/HEAD/GuGu/__init__.py -------------------------------------------------------------------------------- /GuGu/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdnyfcuso/GuGu/HEAD/GuGu/base.py -------------------------------------------------------------------------------- /GuGu/billboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdnyfcuso/GuGu/HEAD/GuGu/billboard.py -------------------------------------------------------------------------------- /GuGu/classify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdnyfcuso/GuGu/HEAD/GuGu/classify.py -------------------------------------------------------------------------------- /GuGu/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdnyfcuso/GuGu/HEAD/GuGu/config.py -------------------------------------------------------------------------------- /GuGu/lowriskintarb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdnyfcuso/GuGu/HEAD/GuGu/lowriskintarb.py -------------------------------------------------------------------------------- /GuGu/macro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdnyfcuso/GuGu/HEAD/GuGu/macro.py -------------------------------------------------------------------------------- /GuGu/marketdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdnyfcuso/GuGu/HEAD/GuGu/marketdata.py -------------------------------------------------------------------------------- /GuGu/reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdnyfcuso/GuGu/HEAD/GuGu/reference.py -------------------------------------------------------------------------------- /GuGu/stockdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdnyfcuso/GuGu/HEAD/GuGu/stockdata.py -------------------------------------------------------------------------------- /GuGu/stockinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdnyfcuso/GuGu/HEAD/GuGu/stockinfo.py -------------------------------------------------------------------------------- /GuGu/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdnyfcuso/GuGu/HEAD/GuGu/utility.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdnyfcuso/GuGu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdnyfcuso/GuGu/HEAD/README.md -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdnyfcuso/GuGu/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdnyfcuso/GuGu/HEAD/setup.py --------------------------------------------------------------------------------