以文本方式查看主题

-  金字塔客服中心 - 专业程序化交易软件提供商  (http://weistock.com/bbs/index.asp)
--  公式模型编写问题提交  (http://weistock.com/bbs/list.asp?boardid=4)
----  初级教程里的例题无效  (http://weistock.com/bbs/dispbbs.asp?boardid=4&id=2693)

--  作者:linanmeng
--  发布时间:2010/9/2 13:40:30
--  初级教程里的例题无效

按教程,写了一个大盘K线的副图指标,结果不能用

 

指标如下:

 

a1:"1a001$close";
a2:"1a001$open";
a3:"1a001$high";
a4:"1a001$low";

aa:stickline(a1>a2,a1,a2,8,1),colorred;
ab:stickline(a1>a2,a3,max(a1,a2),0,1),colorred;
ac:stickline(a1>a2,min(a1,a2),a4,0,1),colorred;
ad:stickline(a1<a2,a1,a2,8,0),colorblue;
ae:stickline(a1<a2,a3,max(a1,a2),0,1),colorblue;
af:stickline(a1<a2,min(a1,a2),a4,0,1),colorblue;

 

请教是什么问题


--  作者:linanmeng
--  发布时间:2010/9/2 13:42:55
--  

教程原文:

 

E、副图绘制K线或者宝塔线

许多的金字塔决策交易系统的客户在分析当中经常的需要对比大盘的走势,或者其它的同类,具有可比的股票,因此在原来的版本中只能不停地切换分析界面,但是对比性还不强!在金字塔决策交易系统的新版中允许使用函数编制K线,或者宝塔线,具体做法见下例:

例一、编制1A0001大盘指数

编写要点:首先调用1A0001的各项数据:

a1:“1a0001$close”;

a2:“1a0001$open”;

a3:“1a0001$high”;

a4:“1a0001$low”;

我们将会使用到新的函数STICKLINE,先绘制阳线,也即当收盘大于开盘的K线,从上到下分为3部分编写,第一部分为上阴线,第二部分为实体,第三部分为下阴线,请注意该函数的各个参数的使用

aa:stickline(a1>a2,a1,a2,8,1),colorred;

ab:stickline(a1>a2,a3,max(a1,a2),0,1),colorred;

ac:stickline(a1>a2,min(a1,a2),a4,0,1),colorred;

同样的方法,绘制阴线:

ad:stickline(a1<a2,a1,a2,8,0),colorblue;

ae:stickline(a1<a2,a3,max(a1,a2),0,1),colorblue;

af:stickline(a1<a2,min(a1,a2),a4,0,1),colorblue;

公式最后编辑汇总如下:

a1:=“1a0001sclose”;

a2:=“1a0001sopen”;

a3:=“1a0001shigh”;

a4:=“1a0001slow”;

aa:stickline(a1>a2,a1,a2,8,1),colorred;

ab:stickline(a1>a2,a3,max(a1,a2),0,1),colorred;

ac:stickline(a1>a2,min(a1,a2),a4,0,1),colorred;

ad:stickline(a1<a2,a1,a2,8,0),colorblue;

ae:stickline(a1<a2,a3,max(a1,a2),0,1),colorblue;

af:stickline(a1<a2,min(a1,a2),a4,0,1),colorblue;


--  作者:fly
--  发布时间:2010/9/2 13:45:56
--  
这是副图绘制K线的例子,没啥问题呀,就是把K线在副图里显示出来呀
[此贴子已经被作者于2010-9-2 13:47:24编辑过]