├── .gitignore ├── .vscode └── settings.json ├── MyTT.py ├── MyTT_plus.py ├── MyTT_python2.py ├── README.md ├── example1.py ├── hb_hq_api.py └── img ├── boll.png └── taq.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpquant/MyTT/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /MyTT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpquant/MyTT/HEAD/MyTT.py -------------------------------------------------------------------------------- /MyTT_plus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpquant/MyTT/HEAD/MyTT_plus.py -------------------------------------------------------------------------------- /MyTT_python2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpquant/MyTT/HEAD/MyTT_python2.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpquant/MyTT/HEAD/README.md -------------------------------------------------------------------------------- /example1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpquant/MyTT/HEAD/example1.py -------------------------------------------------------------------------------- /hb_hq_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpquant/MyTT/HEAD/hb_hq_api.py -------------------------------------------------------------------------------- /img/boll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpquant/MyTT/HEAD/img/boll.png -------------------------------------------------------------------------------- /img/taq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpquant/MyTT/HEAD/img/taq.jpg --------------------------------------------------------------------------------