__init__.py 394 字节
Newer Older
Z
zengbin93 已提交
1 2
# coding: utf-8

Z
zengbin93 已提交
3
from .analyze import KlineAnalyze, is_bei_chi
4
from .ta import ma, macd, boll
Z
zengbin93 已提交
5
from .utils import plot_kline
Z
0.3.1  
zengbin93 已提交
6
from .solid import SolidAnalyze
Z
zengbin93 已提交
7 8
from .solid import is_in_tolerance, is_first_buy, is_first_sell, is_second_buy, \
    is_second_sell, is_third_buy, is_third_sell, is_xd_buy, is_xd_sell
Z
zengbin93 已提交
9

Z
zengbin93 已提交
10
__version__ = "0.4.1"
Z
zengbin93 已提交
11 12
__author__ = "zengbin93"
__email__ = "zeng_bin8888@163.com"
Z
zengbin93 已提交
13 14