以文本方式查看主题

-  金字塔客服中心 - 专业程序化交易软件提供商  (http://weistock.com/bbs/index.asp)
--  公式模型编写问题提交  (http://weistock.com/bbs/list.asp?boardid=4)
----  请教老师:调用显示持仓HOLDING,LTNETHICKO等函数,主图被压缩,不知何故  (http://weistock.com/bbs/dispbbs.asp?boardid=4&id=2139)

--  作者:新大陆
--  发布时间:2010/7/15 20:54:38
--  请教老师:调用显示持仓HOLDING,LTNETHICKO等函数,主图被压缩,不知何故
如图:
--  作者:新大陆
--  发布时间:2010/7/15 21:09:07
--  
怎么图片也上传不了,(格式:JPG,大小:52K)
--  作者:admin
--  发布时间:2010/7/16 9:17:23
--  
请把你的公式代码贴出来
--  作者:明心
--  发布时间:2010/7/16 9:25:50
--  
以下是引用新大陆在2010-7-15 20:54:38的发言:
如图:

是不是指标坐标的问题哦。呵呵


--  作者:新大陆
--  发布时间:2010/7/16 19:03:52
--  

常用的日内翻转

 

hh1:=ref(hhv(h,h1),1);
ll1:=ref(llv(l,l1),1);

Long:=h>hh1 and time>093000 and time<145000;

if Long then
   begin
   sellshort(holding<0,holding,limitr,hh1);
   buy(holding=0,1,limitr,hh1);
   end

partline(holding>0,ll1,colorred);

Short:=l<ll1 and time>093000 and time<145000;

if Short then 
    begin
    sell(holding>0,0,limitr,ll1);
    buyshort(holding=0,1,limitr,ll1);
    end

partline(holding<0,hh1,colorgreen);

sell(time>145500 and holding>0,0,thisclose);
sellshort(time>14500 and holding<0,0,thisclose);

资产:ASSET,LTNETHICKO;
可用现金:CASH(0),LINETHICKO;
持仓:HOLDING,LTNETHICKO;   


--  作者:admin
--  发布时间:2010/7/16 20:30:26
--  [讨论]dll调用的k线日期问题

是 LINETHICK0,不是LINETHICKO