小于2根K线的低点也止损平仓??
则以3根K线收盘低点止盈??
请具体解释一下
[此贴子已经被作者于2013/12/9 15:43:58编辑过]
您好,指的是当前这根K线的前两根和前三根K线的低点。
h1:=ref(hhv(h,30),1);
l1:=ref(llv(l,30),1);
h2:=ref(hhv(h,2),1);
l2:=ref(llv(l,2),1);
h3:=ref(hhv(h,3),1);
l3:=ref(llv(l,3),1);
VARIABLE:m1=0,m2=0,m3=0,m4=0;
if c>h1 and m1=0 and m2=0 THEN
begin
buy(1,1,limit,close);
m1:=close;
m2:=open;
end
if c<m1 then
BEGIN
sell(1,1,limit,m2);
sell(1,1,limit,l2);
m1:=0;
m2:=0;
end
if c>m1 then
BEGIN
sell(1,1,limit,l3);
m1:=0;
m2:=0;
end
if c<l1 and m3=0 and m4=0 then BEGIN
sellshort(1,1,limit,close);
end
if c>m3 then
BEGIN
sellshort(1,1,limit,m4);
sellshort(1,1,limit,h2);
m3:=0;
m4:=0;
end
if c<m3 then
BEGIN
sellshort(1,1,limit,h3);
m3:=0;
m4:=0;
end
您看我这么写对不对!
本例只修改了多头部分,请尝试自行修改空头部分
对于策略思路本身欠缺的地方,请自行完善
//模式选:走完一根K线
VARIABLE:m1=0,m2=0,m3=0,m4=0;//放最前面
h1:=ref(hhv(h,30),1);
l1:=ref(llv(l,30),1);
h2:=ref(hhv(h,2),1);
l2:=ref(llv(l,2),1);
h3:=ref(hhv(h,3),1);
l3:=ref(llv(l,3),1);
//holding为0,无仓;为正(大于0),多头仓;为负(小于0),空头仓
if c>h1 and holding=0 THEN
begin
buy(1,1,limit,close);
m1:=close;
m2:=open;
end
if c<m1 and holding>0 and c<m2 then
BEGIN
sell(1,1,limit,m2);
if c<m1 and holding>0 and c<l2 then
BEGIN
sell(1,1,limit,l2);
end
//当前价格》开仓价:则以3根K线收盘低点止盈
if c>m1 and holding>0 and c>l3 then
BEGIN
sell(1,1,limit,l3);
end
[此贴子已经被作者于2013/12/11 10:23:36编辑过]
非常感谢,已解决。我想问一下,用限价指令对测试是否会产品影响?
还有一点,我看你用全局变量,平仓的时候没让全局变量M1,M2,M3,M4重新归0,是否会有问题?