我非人 發表於 20-7-16 21:03

小白來請教

if RSI(14)<20 then sellshort("S") next bar at market;
if RSI(14)>80 then buy("B") next bar at market;
end;

if marketposition=1 then begin
        sell next bar entryprice -0.3 stop;
        sell next bar entryprice +0.6 limit;
end;

if marketposition=-1 then begin
        buytocover next bar entryprice +0.3 stop;
        buytocover next bar entryprice -0.6 limit;
end;

這樣寫的話,問題出在哪裡?

SALLY 發表於 20-7-17 19:04

本帖最後由 SALLY 於 20-7-17 19:12 編輯

你都沒說你遇上甚麼問題,要人家怎麼幫你? 如果是編譯問題,拿掉紅色的end;這是摩台當沖?

if RSI(14)<20 then sellshort("S") next bar at market;
if RSI(14)>80 then buy("B") next bar at market;
end;

if marketposition=1 then begin
      sell next bar entryprice -0.3 stop;
      sell next bar entryprice +0.6 limit;
end;

if marketposition=-1 then begin
      buytocover next bar entryprice +0.3 stop;
      buytocover next bar entryprice -0.6 limit;
end;


我非人 發表於 20-7-17 20:21

SALLY 發表於 20-7-17 19:04
你都沒說你遇上甚麼問題,要人家怎麼幫你? 如果是編譯問題,拿掉紅色的end;這是摩台當沖?

if RSI(14)80 th ...

已經解決了,好像是RSI沒定義好和那個end的兩個問題
頁: [1]
查看完整版本: 小白來請教