大家好,15分钟怎么跨周期取得日线的MACD [开拓者 TB]
-
咨询内容:
15分钟怎么跨周期取得日线的MACD,有实例吗?
-
TB技术人员:
麻烦小米老师给我改下用户函数,15分钟跨周期取1小时的MACD值,总是不对!先谢谢了.
Params
NumericSeries Price(10);
Numeric nMinSet(5);
Numeric MinsAgo(2);
Numeric Length(10);
Vars
NumericSeries MinsOfDay;
NumericSeries barCnt;
NumericSeries MinData;
Numeric nIndex(0);
Numeric sFcactor;
NumericSeries XAvgValue;
Begin
MinsOfDay = (Hour*60+Minute);
If(IntPart(MinsOfDay/nMinSet)!=IntPart(MinsOfDay[1]/nMinSet))
{
barCnt = 1;
}Else
{
barCnt = barCnt[1] + 1;
}
sFcactor = 2 / ( Length + 1 );
if (CurrentBar == 0 )
{
XAvgValue = Price;
}else
{
XAvgValue = XAvgValue[barCnt] + sFcactor * ( 10 - XAvgValue[barCnt] ) ;
}
Return XAvgValue;
End -
TB客服:
小米老师,分钟跨周期取1小时的MACD值,自己想了几天都写不好,希望老师帮忙一下,万分谢谢!
-
网友回复:
你发的 是什么啊 看不懂,跨周期 最简单的 是用最新的软件 tbQuant 来实现
- 网友回复:
有思路,想编写各种指标公式,交易模型,选股公式,还原公式的朋友
可联系技术人员 QQ: 262069696 或微信号:cxh99cxh99 进行 有偿收费 编写!
(注:由于人数限制,QQ或微信请选择方便的一个联系我们就行,加好友时请简单备注下您的需求,否则无法通过。谢谢您!)
相关文章
-
没有相关内容