期貨軟件TB系統(tǒng)源代碼解讀系列34-SAR系統(tǒng)

今天沒什么可以說的朴译,就是根據(jù)SAR跟移動均線的配合做了三個系統(tǒng)蟆融,當然還是先聲明草巡,這三個系統(tǒng)也是今天隨手寫出來的,測試結果看著還行型酥,但實盤如何山憨,還沒仔細研究過查乒。

第一個很簡單的規(guī)則,5均線在20均線上方郁竟,并且前一個收盤價在200均線上方玛迄,并且SAR點位前一個點比再前一個點高,進場開多棚亩。做空就是反過來了蓖议。

出場位置,就是要么5均線與20均線交叉蔑舞,要么就是SAR點位前一個比再前一個低拒担。

代碼及結果,如下:

Params

Numeric FastLength(5);

Numeric SlowLength(20);

Numeric DslowLength(200);

Numeric AfStep( 0.02);

Numeric AfLimit( 0.2 ) ;

Vars

NumericSeries AvgValue1;?

NumericSeries AvgValue2;

NumericSeries AvgValue3;

Numeric oParCl( 0 );?

Numeric oParOp( 0 );

Numeric oPosition( 0 );

Numeric oTransition( 0 );

NumericSeries hk;

Begin

ParabolicSAR( AfStep, AfLimit, oParCl, oParOp, oPosition, oTransition ) ;

hk = oParCl;

AvgValue1 = AverageFC(Close,FastLength);

AvgValue2 = AverageFC(Close,SlowLength);

AvgValue3 = AverageFC(Close,DslowLength);

PlotNumeric("MA1",AvgValue1);

PlotNumeric("MA2",AvgValue2);

PlotNumeric("MA3",AvgValue3);

// 集合競價和小節(jié)休息過濾

If(!CallAuctionFilter()) Return;

If(MarketPosition <>1 && AvgValue1[1] > AvgValue2[1] && Close[1] > AvgValue3[1] And hk[1] > hk[2])

{

Buy(1,Open);

}

If(MarketPosition ==1 && AvgValue1[1] < AvgValue2[1] Or hk[1]

{

Sell(1,Open);

}

If(MarketPosition <>-1 && AvgValue1[1] < AvgValue2[1] && Close[1] < AvgValue3[1] And hk[1]

{

SellShort(1,Open);

}

If(MarketPosition ==-1 && AvgValue1[1] > AvgValue2[1] Or hk[1]>hk[2])

{

BuyToCover(1,open);

}

End

第二個攻询,進場規(guī)則跟上邊的一樣从撼,就是出場價格我給變成固定的1:4,就是添加之前寫的固定止損止盈钧栖。代碼及結果如下:

Params

Numeric FastLength(5);

Numeric SlowLength(20);

Numeric DslowLength(200);

Numeric AfStep( 0.02);

Numeric AfLimit( 0.2 ) ;

Vars

NumericSeries AvgValue1;?

NumericSeries AvgValue2;

NumericSeries AvgValue3;

Numeric oParCl( 0 );?

Numeric oParOp( 0 );

Numeric oPosition( 0 );

Numeric oTransition( 0 );

NumericSeries hk;

Numeric MinPoint;

Numeric MyEntryPrice;

Numeric TakeProfitSet(120);

Numeric StopLossSet(30);

Numeric MyExitPrice;

Begin

ParabolicSAR( AfStep, AfLimit, oParCl, oParOp, oPosition, oTransition ) ;

hk = oParCl;

AvgValue1 = AverageFC(Close,FastLength);

AvgValue2 = AverageFC(Close,SlowLength);

AvgValue3 = AverageFC(Close,DslowLength);

PlotNumeric("MA1",AvgValue1);

PlotNumeric("MA2",AvgValue2);

PlotNumeric("MA3",AvgValue3);

// 集合競價和小節(jié)休息過濾

If(!CallAuctionFilter()) Return;

If(MarketPosition <>1 && AvgValue1[1] > AvgValue2[1] && Close[1] > AvgValue3[1] And hk[1] > hk[2])

{

Buy(1,Open);

}

If(MarketPosition <>-1 && AvgValue1[1] < AvgValue2[1] && Close[1] < AvgValue3[1] And hk[1]

{

SellShort(1,Open);

}

If(!CallAuctionFilter()) Return;

MinPoint = MinMove*PriceScale;

MyEntryPrice = AvgEntryPrice;

if(MarketPosition <> 1 And Close[1] > Close[2] And Close[1]>AvgValue3)

{

Buy(1,Open);

}

If(MarketPosition <> -1 And Close[1] < Close[2] And Close[1]

{

SellShort(1,Open);

}

If(!CallAuctionFilter()) Return;

MinPoint = MinMove*PriceScale;

MyEntryPrice = AvgEntryPrice;

If(MarketPosition==1)

{

If(High >= MyEntryPrice + TakeProfitSet*MinPoint)

{

MyExitPrice = MyEntryPrice + TakeProfitSet*MinPoint;

If(Open > MyExitPrice) MyExitPrice = Open;

Sell(0,MyExitPrice);

}else if(Low <= MyEntryPrice - StopLossSet*MinPoint)

{

MyExitPrice = MyEntryPrice - StopLossSet*MinPoint;

If(Open < MyExitPrice) MyExitPrice = Open;

Sell(0,MyExitPrice);

}

}else if(MarketPosition==-1)

{

If(Low <= MyEntryPrice - TakeProfitSet*MinPoint)

{

MyExitPrice = MyEntryPrice - TakeProfitSet*MinPoint;

If(Open < MyExitPrice) MyExitPrice = Open;

BuyToCover(0,MyExitPrice);

}else if(High >= MyEntryPrice + StopLossSet*MinPoint)

{

MyExitPrice = MyEntryPrice + StopLossSet*MinPoint;

If(Open > MyExitPrice) MyExitPrice = Open;

BuyToCover(0,MyExitPrice);

}

}

End

第三個就是跟蹤止盈止損的低零,當然不是依據(jù)SAR點,還是用之前寫的那個止盈止損了拯杠,代碼及結果如下:

Params

Numeric FastLength(5);

Numeric SlowLength(20);

Numeric DslowLength(200);

Numeric StopPoint(45);

Numeric ProfitPoint(100);

Numeric AfStep( 0.02);

Numeric AfLimit( 0.2 ) ;

Numeric TrailingStart1(50);?

Numeric TrailingStart2(80);?

Numeric TrailingStop1(30);?

Numeric TrailingStop2(20);

Numeric StopLossSet(30);

Vars

NumericSeries AvgValue1;?

NumericSeries AvgValue2;

NumericSeries AvgValue3;

Numeric oParCl( 0 );?

Numeric oParOp( 0 );

Numeric oPosition( 0 );

Numeric oTransition( 0 );

NumericSeries hk;

Numeric MinPoint;??????

NumericSeries HighestAfterEntry;?

NumericSeries LowestAfterEntry;

Numeric MyEntryPrice;

Numeric MyExitPrice;

Numeric myprice;

Begin

AvgValue1 = AverageFC(Close,FastLength);

AvgValue2 = AverageFC(Close,SlowLength);

AvgValue3 = AverageFC(Close,DslowLength);

ParabolicSAR( AfStep, AfLimit, oParCl, oParOp, oPosition, oTransition ) ;

hk = oParCl;

PlotNumeric("MA1",AvgValue1);

PlotNumeric("MA2",AvgValue2);

PlotNumeric("MA3",AvgValue3);

If(!CallAuctionFilter()) Return;

If(MarketPosition <>1 && AvgValue1[1] > AvgValue2[1] && Close[1] > AvgValue3[1] And hk[1] > hk[2])

{

Buy(1,Open);

}

If(MarketPosition <>-1 && AvgValue1[1] < AvgValue2[1] && Close[1] < AvgValue3[1] And hk[1]

{

SellShort(1,Open);

}

??MinPoint = MinMove*PriceScale;



?If(BarsSinceentry == 0)

{

HighestAfterEntry = Close;

LowestAfterEntry = Close;

If(MarketPosition <> 0)

{

HighestAfterEntry = Max(HighestAfterEntry,AvgEntryPrice);?

LowestAfterEntry = Min(LowestAfterEntry,AvgEntryPrice);?

}

}else

{

HighestAfterEntry = Max(HighestAfterEntry,High);?

LowestAfterEntry = Min(LowestAfterEntry,Low);?

}

Commentary("HighestAfterEntry="+Text(HighestAfterEntry));

Commentary("LowestAfterEntry="+Text(LowestAfterEntry));

Commentary("MyEntryPrice="+Text(MyEntryPrice));

MinPoint = MinMove*PriceScale;

MyEntryPrice = AvgEntryPrice;

If(MarketPosition==1)?

{

If(HighestAfterEntry[1] >= MyEntryPrice + TrailingStart2*MinPoint)?

{

If(Low <= HighestAfterEntry[1] - TrailingStop2*MinPoint)

{

MyExitPrice = HighestAfterEntry[1] - TrailingStop2*MinPoint;

Sell(0,MyExitPrice);

}

}else if(HighestAfterEntry[1] >= MyEntryPrice + TrailingStart1*MinPoint)

{

If(Low <= HighestAfterEntry[1] - TrailingStop1*MinPoint)

{

MyExitPrice =?HighestAfterEntry[1] - TrailingStop1*MinPoint ;

Sell(0,MyExitPrice);

}

}else if(Low <= MyEntryPrice - StopLossSet*MinPoint)

{

MyExitPrice =?MyEntryPrice - StopLossSet*MinPoint;

Sell(0,MyExitPrice);

}

}else if(MarketPosition==-1)?

{

If(LowestAfterEntry[1] <= MyEntryPrice - TrailingStart2*MinPoint)?

{

If(High >= LowestAfterEntry[1] + TrailingStop2*MinPoint)

{

MyExitPrice =?LowestAfterEntry[1] + TrailingStop2*MinPoint;

BuyToCover(0,MyExitPrice);

}

}else if(LowestAfterEntry[1] <= MyEntryPrice - TrailingStart1*MinPoint)

{

If(High >= LowestAfterEntry[1] + TrailingStop1*MinPoint)

{

MyExitPrice =?LowestAfterEntry[1] + TrailingStop1*MinPoint;

BuyToCover(0,MyExitPrice);

}

}else If(High >= MyEntryPrice + StopLossSet*MinPoint)

{

MyExitPrice = MyEntryPrice + StopLossSet*MinPoint;

BuyToCover(0,MyExitPrice);

}

}

End

三個看著都還行掏婶,當然這些我都沒經(jīng)過什么優(yōu)化的,就是很隨意寫的參數(shù)潭陪,測試的都是焦炭的30min周期雄妥,想用的就自己觀察一段時間看看,不喜歡的就跳過了依溯。

?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末老厌,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子黎炉,更是在濱河造成了極大的恐慌枝秤,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,743評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件慷嗜,死亡現(xiàn)場離奇詭異淀弹,居然都是意外死亡,警方通過查閱死者的電腦和手機庆械,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,296評論 3 385
  • 文/潘曉璐 我一進店門薇溃,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人缭乘,你說我怎么就攤上這事痊焊。” “怎么了?”我有些...
    開封第一講書人閱讀 157,285評論 0 348
  • 文/不壞的土叔 我叫張陵薄啥,是天一觀的道長辕羽。 經(jīng)常有香客問我,道長垄惧,這世上最難降的妖魔是什么刁愿? 我笑而不...
    開封第一講書人閱讀 56,485評論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮到逊,結果婚禮上铣口,老公的妹妹穿的比我還像新娘。我一直安慰自己觉壶,他們只是感情好脑题,可當我...
    茶點故事閱讀 65,581評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著铜靶,像睡著了一般叔遂。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上争剿,一...
    開封第一講書人閱讀 49,821評論 1 290
  • 那天已艰,我揣著相機與錄音,去河邊找鬼蚕苇。 笑死哩掺,一個胖子當著我的面吹牛,可吹牛的內容都是我干的涩笤。 我是一名探鬼主播嚼吞,決...
    沈念sama閱讀 38,960評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼蹬碧!你這毒婦竟也來了舱禽?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 37,719評論 0 266
  • 序言:老撾萬榮一對情侶失蹤锰茉,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后切心,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體飒筑,經(jīng)...
    沈念sama閱讀 44,186評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,516評論 2 327
  • 正文 我和宋清朗相戀三年绽昏,在試婚紗的時候發(fā)現(xiàn)自己被綠了协屡。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,650評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡全谤,死狀恐怖肤晓,靈堂內的尸體忽然破棺而出,到底是詐尸還是另有隱情,我是刑警寧澤补憾,帶...
    沈念sama閱讀 34,329評論 4 330
  • 正文 年R本政府宣布漫萄,位于F島的核電站,受9級特大地震影響盈匾,放射性物質發(fā)生泄漏腾务。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,936評論 3 313
  • 文/蒙蒙 一削饵、第九天 我趴在偏房一處隱蔽的房頂上張望岩瘦。 院中可真熱鬧,春花似錦窿撬、人聲如沸启昧。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,757評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽密末。三九已至,卻和暖如春宰啦,著一層夾襖步出監(jiān)牢的瞬間苏遥,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,991評論 1 266
  • 我被黑心中介騙來泰國打工赡模, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留田炭,地道東北人。 一個月前我還...
    沈念sama閱讀 46,370評論 2 360
  • 正文 我出身青樓漓柑,卻偏偏與公主長得像教硫,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子辆布,可洞房花燭夜當晚...
    茶點故事閱讀 43,527評論 2 349

推薦閱讀更多精彩內容