怎么把oo定義成為 平空? 或者平多 處的價位呢??? [金字塔]
-
咨詢內容:
怎么把oo定義成為 平空? 或者平多 處的價位呢???
下文定義oo是當日開盤價,我想把它改成 平倉處的價位 ,怎么寫呢?求指導
input:grid(3,1,60,1);
variable:level=0;
dist:=barslast(date<>ref(date,1));
oo:=ref(open,dist);
?
if holding=0 then begin
?dnprice:=oo-grid*mindiff;
?
?if low<=dnprice then begin
??buy(1,1,limitr,dnprice);
??level:=-1;
?end
end?if holding=0 then begin
?upprice:=oo+grid*mindiff;
?
?if high>=upprice then begin
??buyshort(1,1,limitr,upprice);
??level:=1;
?end?
endif holding>0 then begin
?upprice:=oo+(level+1)*grid*mindiff;
?dnprice:=oo+(level-1)*grid*mindiff;
?
?if high>=upprice then begin
??sell(1,1,limitr,upprice);
??level:=level+1;
?end
?
?if low<=dnprice then begin
??buy(1,1,limitr,dnprice);
??level:=level-1;
?end
?
?if time=closetime(0) then
??sell(1,holding,limitr,close);
end?if holding<0 then begin?
?upprice:=oo+(level+1)*grid*mindiff;
?dnprice:=oo+(level-1)*grid*mindiff;
?
?if low<=dnprice then begin
??sellshort(1,1,limitr,dnprice);
??level:=level-1;
?end
?
?if high>=upprice then begin
??buyshort(1,1,limitr,upprice);
??level:=level+1;
?end
?
?if time=closetime(0) then
??sellshort(1,holding,limitr,close);
end?
-
金字塔客服:
limitr 后邊的參數就是限價的價格,改成oo就可以了。
input:grid(3,1,60,1);
variable:level=0;
dist:=barslast(date<>ref(date,1));
oo:=ref(open,dist);
?
if holding=0 then begin
?dnprice:=oo-grid*mindiff;
?
?if low<=dnprice then begin
??buy(1,1,limitr,dnprice);
??level:=-1;
?end
end?if holding=0 then begin
?upprice:=oo+grid*mindiff;
?
?if high>=upprice then begin
??buyshort(1,1,limitr,upprice);
??level:=1;
?end?
endif holding>0 then begin
?upprice:=oo+(level+1)*grid*mindiff;
?dnprice:=oo+(level-1)*grid*mindiff;
?
?if high>=upprice then begin
??sell(1,1,limitr,oo);
??level:=level+1;
?end
?
?if low<=dnprice then begin
??buy(1,1,limitr,dnprice);
??level:=level-1;
?end
?
?if time=closetime(0) then
??sell(1,holding,limitr,oo);
end?if holding<0 then begin?
?upprice:=oo+(level+1)*grid*mindiff;
?dnprice:=oo+(level-1)*grid*mindiff;
?
?if low<=dnprice then begin
??sellshort(1,1,limitr,oo);
??level:=level-1;
?end
?
?if high>=upprice then begin
??buyshort(1,1,limitr,upprice);
??level:=level+1;
?end
?
?if time=closetime(0) then
??sellshort(1,holding,limitr,oo);
end
[此貼子已經被作者于2017/5/19 16:43:26編輯過]
有思路,想編寫各種指標公式,程序化交易模型,選股公式,預警公式的朋友
可聯系技術人員 QQ: 511411198 進行 有償 編寫!(不貴!點擊查看價格!)
相關文章
-
沒有相關內容