1 Star 0 Fork 15

taliwe/MyIndicator

forked from Lanson/MyIndicator 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
example_huobi.py 648 Bytes
一键复制 编辑 原始数据 按行查看 历史
Lanson 提交于 2021-08-03 12:33 . add files.
#数字货币行情获取和指标计算演示
from huobi_hq_api import *
from MyIndicator import *
#日线数据获取 1d:1天 4h:4小时 60m: 60分钟 15m:15分钟
df=get_price('btc.usdt',count = 120,frequency = '1d')
#基础数据定义
CLOSE=df.close.values
OPEN=df.open.values
HIGH=df.high.values
LOW=df.low.values
MA5=MA(CLOSE,5)
MA10=MA(CLOSE,10)
CROSS_TODAY=RET(CROSS(MA5,MA10))
print(f'BTC5日均线{ MA5[-1]} BTC10日均线 {MA10[-1]}' )
print('今天5日线是否上穿10日线',CROSS_TODAY)
print('最近5天收盘价全都大于5日线吗?',EVERY(CLOSE>MA10,5) )
DIF,DEA,MACD=MACD(CLOSE)
print('MACD值',DIF,DEA,MACD)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/taliwe/my-indicator.git
git@gitee.com:taliwe/my-indicator.git
taliwe
my-indicator
MyIndicator
master

搜索帮助