[TS懶人包] [保險服務]

2008年10月13日 星期一

程式交易 - 簡易波段程式

程式的概念為:價格如果低於 72ma 和 18ma 且連二黑則進場賣出;如果大於 72ma 和 18ma 且連二紅則進場買進…這樣的程式需用於周期較長的 k 線…只是個簡單的程式…獲利能力還算普通…應該還有修改的機會。

60分鐘線的回測績效如下:




簡單的程式…就能有不錯的獲利能力…這隻程式的程式碼如下:

if low > averagefc(close, 72) and low > averagefc(close,18) and close > open and close[1] > open[1] then begin
buy ("b1") next bar at market;
end;
if high < averagefc(close, 72) and high < averagefc(close,18) and close < open and close[1] < open[1] then begin
sell ("s1") next bar at market;
end;

if marketposition > 0 and close < averagefc(close, 18) then begin
exitlong next bar at market;
end;
if marketposition < 0 and close > averagefc(close, 18) then begin
exitshort next bar at market;
end;

有興趣就自己玩玩看囉。

2 則留言:

  1. 可以轉成hts語法嗎? 感謝您

    阿泰回

    回覆刪除
  2. 阿泰:應該不難才對,先自己試試吧。
    看看這篇: http://ssdkchang.blogspot.com/2008/08/tradestation-hts.html

    回覆刪除

請留下您的大名…匿名者恕不回應…

Related Posts Plugin for WordPress, Blogger...