基本信息
源码名称:Funcat2 将同花顺、通达信、文华财经等的公式移植到了 Python 中。
源码大小:0.31M
文件格式:.zip
开发语言:Python
更新时间:2023-07-01
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
Funcat2 将同花顺、通达信、文华财经等的公式移植到了 Python 中。
Funcat 将同花顺、通达信、文华财经等的公式移植到了 Python 中。 同花顺、通达信、文华财经麦语言等公式的表达十分简洁,适合做技术分析。 苦于 Python 缺乏这种领域特定语言的表达能力,所以用 Python 基于 ...
文件清单
└── funcat2-master
├── CHANGELOG.rst
├── funcat
│ ├── api.py
│ ├── conditional_selection
│ │ ├── __init__.py
│ │ ├── selection.py
│ │ └── turtle.py
│ ├── context.py
│ ├── data
│ │ ├── backend.py
│ │ ├── __init__.py
│ │ ├── mongodb_backend.py
│ │ ├── quantaxis_backend.py
│ │ ├── rqalpha_data_backend.py
│ │ ├── rqdata_data_backend.py
│ │ ├── rt_data_from_tencent.py
│ │ ├── tencent_backend.py
│ │ ├── test_tencent_api.py
│ │ ├── tushare_backend.py
│ │ └── tusharepro_backend.py
│ ├── func.py
│ ├── helper.py
│ ├── indicators.py
│ ├── __init__.py
│ ├── strategy
│ │ └── __init__.py
│ ├── time_series.py
│ ├── usrFunc
│ │ ├── hongsanbin.tdx
│ │ └── trend.tdx
│ ├── utils
│ │ ├── async_utils.py
│ │ ├── __init__.py
│ │ ├── singletion.py
│ │ ├── tdx2python.py
│ │ ├── test_base.py
│ │ └── util.py
│ └── VERSION.txt
├── __init__.py
├── LICENSE
├── MANIFEST.in
├── notebooks
│ └── funcat-tutorial.ipynb
├── README.md
├── requirements.txt
├── setup.py
└── tests
├── funcat
│ ├── conditional_selection
│ │ ├── __init__.py
│ │ ├── test_selection.py
│ │ └── test_turtle.py
│ ├── data
│ │ ├── __init__.py
│ │ ├── test_mongodb_backend.py
│ │ ├── test_quantaxis_backend.py
│ │ ├── test_tushare_api.py
│ │ └── test_tusharepro_backend.py
│ ├── __init__.py
│ ├── others
│ │ ├── clustering.md
│ │ ├── __init__.py
│ │ ├── plot_dbscan.py
│ │ ├── plot_stock_market.md
│ │ ├── plot_stock_market.py
│ │ └── plot_stock_SZ50_market.py
│ ├── test_api.py
│ ├── test_funcat2.py
│ ├── test_utils.py
│ └── utils
│ ├── __init__.py
│ └── test_tdx2python.py
├── __init__.py
└── others
├── test_self_func.py
└── test_talib.py
15 directories, 62 files
Funcat2 将同花顺、通达信、文华财经等的公式移植到了 Python 中。
Funcat 将同花顺、通达信、文华财经等的公式移植到了 Python 中。 同花顺、通达信、文华财经麦语言等公式的表达十分简洁,适合做技术分析。 苦于 Python 缺乏这种领域特定语言的表达能力,所以用 Python 基于 ...
文件清单
└── funcat2-master
├── CHANGELOG.rst
├── funcat
│ ├── api.py
│ ├── conditional_selection
│ │ ├── __init__.py
│ │ ├── selection.py
│ │ └── turtle.py
│ ├── context.py
│ ├── data
│ │ ├── backend.py
│ │ ├── __init__.py
│ │ ├── mongodb_backend.py
│ │ ├── quantaxis_backend.py
│ │ ├── rqalpha_data_backend.py
│ │ ├── rqdata_data_backend.py
│ │ ├── rt_data_from_tencent.py
│ │ ├── tencent_backend.py
│ │ ├── test_tencent_api.py
│ │ ├── tushare_backend.py
│ │ └── tusharepro_backend.py
│ ├── func.py
│ ├── helper.py
│ ├── indicators.py
│ ├── __init__.py
│ ├── strategy
│ │ └── __init__.py
│ ├── time_series.py
│ ├── usrFunc
│ │ ├── hongsanbin.tdx
│ │ └── trend.tdx
│ ├── utils
│ │ ├── async_utils.py
│ │ ├── __init__.py
│ │ ├── singletion.py
│ │ ├── tdx2python.py
│ │ ├── test_base.py
│ │ └── util.py
│ └── VERSION.txt
├── __init__.py
├── LICENSE
├── MANIFEST.in
├── notebooks
│ └── funcat-tutorial.ipynb
├── README.md
├── requirements.txt
├── setup.py
└── tests
├── funcat
│ ├── conditional_selection
│ │ ├── __init__.py
│ │ ├── test_selection.py
│ │ └── test_turtle.py
│ ├── data
│ │ ├── __init__.py
│ │ ├── test_mongodb_backend.py
│ │ ├── test_quantaxis_backend.py
│ │ ├── test_tushare_api.py
│ │ └── test_tusharepro_backend.py
│ ├── __init__.py
│ ├── others
│ │ ├── clustering.md
│ │ ├── __init__.py
│ │ ├── plot_dbscan.py
│ │ ├── plot_stock_market.md
│ │ ├── plot_stock_market.py
│ │ └── plot_stock_SZ50_market.py
│ ├── test_api.py
│ ├── test_funcat2.py
│ ├── test_utils.py
│ └── utils
│ ├── __init__.py
│ └── test_tdx2python.py
├── __init__.py
└── others
├── test_self_func.py
└── test_talib.py
15 directories, 62 files