兩個開倉方法同時滿足即開兩次,如何讓軟件只開一次倉 [金字塔]
- 咨詢內容:
if vol_1>=vol_2+vol_3+vol_4 and c_1<o_1-n6 then
begin
buySHORT(1,lots,limitr,open),IGNORECHECKPRICE;
HigherAfterEntry:=enterprice;
LowerAfterEntry:=enterprice;
end
if vol_1>=avvol*3 and c_1<o_1-n7 then
begin
buyshort(1,lots,limitr,open);
HigherAfterEntry:=enterprice;
LowerAfterEntry:=enterprice;
end以上兩個開倉條件同時滿足軟件就開了兩次倉,而我只要求開一次
- 金字塔客服:
variable:n=0
if vol_1>=vol_2+vol_3+vol_4 and c_1<o_1-n6 and n=0 then
begin
buySHORT(1,lots,limitr,open),IGNORECHECKPRICE;
HigherAfterEntry:=enterprice;
LowerAfterEntry:=enterprice;n:=1;
end
if vol_1>=avvol*3 and c_1<o_1-n7 and n=0 then
begin
buyshort(1,lots,limitr,open);
HigherAfterEntry:=enterprice;
LowerAfterEntry:=enterprice;n:=1;
end用全局變量來記錄下單狀態,為0時能下單,只要有任意一個交易了,變為0,后面的就不能交易
有思路,想編寫各種指標公式,程序化交易模型,選股公式,預警公式的朋友
可聯系技術人員 QQ: 1145508240 進行 有償 編寫!(不貴!點擊查看價格!)
相關文章
-
沒有相關內容