這個我寫成 if close[1] cross over ma and open > ma then buy("buy") at this bar ;
不知道這樣寫對不對呢?
另外我想寫個停損機制就是說以用 price> ma的這根開盤價 來當作停損點
我目前寫成
if close[1] cross over ma and open > ma then longout=open[2];
if marketposition=1 then begin
sell("sell") next bar at longout limit;
end;
可是寫出來好像是錯的... 我測出來完全不是我想要的方式
if close cross over ma then plot1(5);
if close cross over ma then begin
alert(text("price is cross over now")) ;
PlaySound("c:\ring.wma");
end;
if close cross under ma then plot2(-5);
if close cross under ma then begin
alert(text("price is cross under now"));
PlaySound("c:\ring.wma");
end;
plot3(0);