From 644dc87cfb95794255cf4fed0a4de612032f44a5 Mon Sep 17 00:00:00 2001 From: zengbin93 Date: Sun, 2 Feb 2020 14:50:56 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=20examples?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 ++ examples/combine_with_tushare.py | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a1a43bf..60db088 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,8 @@ ka.zs py 文件地址: examples/combine_with_tushare.py +没有 token,到 https://tushare.pro/register?reg=7 注册下 + ```python import tushare as ts from datetime import datetime, timedelta diff --git a/examples/combine_with_tushare.py b/examples/combine_with_tushare.py index b6264f0..c15d239 100644 --- a/examples/combine_with_tushare.py +++ b/examples/combine_with_tushare.py @@ -1,6 +1,6 @@ # coding: utf-8 """ -结合掘金的数据使用 chan 进行缠论技术分析 +结合 tushare.pro 的数据使用 chan 进行缠论技术分析 author: zengbin93 email: zeng_bin8888@163.com @@ -13,6 +13,7 @@ from datetime import datetime, timedelta from chan import KlineAnalyze, SolidAnalyze # 首次使用,需要在这里设置你的 tushare token,用于获取数据;在同一台机器上,tushare token 只需要设置一次 +# 没有 token,到 https://tushare.pro/register?reg=7 注册下 # ts.set_token("your tushare token") -- GitLab