信號閃現,是什么原因老師回測非常好 [開拓者 TB]
-
咨詢內容:
Params
Numeric ceilingAmt(30);
? ???Numeric floorAmt(60);
? ???Numeric bolBandTrig(2);
? ?
Vars
? ???Numeric lookBackDays(20);? ?? ?? ?
? ???Numeric todayVolatility(0);
? ???Numeric yesterDayVolatility(0);
? ???Numeric deltaVolatility(0);
? ???NumericSeries buyPoint(0);
? ???NumericSeries sellPoint(0);
? ???NumericSeries longLiqPoint(0);
? ???NumericSeries shortLiqPoint(0);
? ???Numeric upBand(0);
? ???Numeric dnBand(0);
? ???Numeric MidLine(0);
? ???Numeric Band(0);
Begin
? ???todayVolatility = StandardDev(Close[1],30,1);
? ???yesterDayVolatility = StandardDev(Close[1],30,1);
? ???deltaVolatility = (todayVolatility - yesterDayVolatility)/todayVolatility;
? ???lookBackDays = lookBackDays * (1 + deltaVolatility);
? ???lookBackDays = Round(lookBackDays,0);
? ???lookBackDays = Min(lookBackDays,ceilingAmt);
? ???lookBackDays = Max(lookBackDays,floorAmt);
? ???MidLine = AverageFC(Close[1],lookBackDays);
? ???Band = StandardDev(Close[1],lookBackDays,bolBandTrig);
? ???upBand = MidLine + bolBandTrig * Band;
? ???dnBand = MidLine - bolBandTrig * Band;
? ???buyPoint = Highest(High[1],lookBackDays);
? ???sellPoint = Lowest(Low[1],lookBackDays);
? ???longLiqPoint = Average(Close[1],lookBackDays);
? ???shortLiqPoint = Average(Close[1],lookBackDays);
if(Close > upBand)??
{
? ? If(CrossOver(high,buyPoint))? ?
? ?{
? ?? ?Buy(1,max( buyPoint, Low ));
? ?}
Commentary("多頭觸發價:"+Text(buyPoint));
}
if(Close < dnBand)
{
? ? If(CrossUnder(Low,sellPoint ))
? ? {
? ?? ? SellShort(1,min( sellPoint , High ));
? ? }
Commentary("空頭觸發價:"+Text(sellPoint));
}
if(MarketPosition == 1)
{??
? ? If(CrossUnder(Low,longLiqPoint ))
? ? {
? ?? ? Sell(1,min( longLiqPoint , High ));
? ? }
Commentary("多頭退出:"+Text(longLiqPoint));
}
if(MarketPosition == -1)
{
? ? If(CrossOver(high,shortLiqPoint))? ?
? ?{
? ?? ?BuyToCover(1,max( shortLiqPoint, Low ));
? ?}
Commentary("多頭退出:"+Text(shortLiqPoint));
}
End
有思路,想編寫各種指標公式,交易模型,選股公式,還原公式的朋友
可聯系技術人員 QQ: 262069696 或微信號:cxh99cxh99 進行 有償收費 編寫!
(注:由于人數限制,QQ或微信請選擇方便的一個聯系我們就行,加好友時請簡單備注下您的需求,否則無法通過。謝謝您!)
相關文章
-
沒有相關內容