開拓者 TB 突破+穿越追漲殺跌法交易策略源碼[開拓者公式]
- 咨詢內(nèi)容:
一小段股指期貨(IF)程序,送懂得感恩的人。
Params
Numeric K1(50);
Numeric K2(7);
Numeric nOffSet(0);
Numeric stopLossSet(100);
Vars
NumericSeries a1;
NumericSeries a2;
Numeric MinPoint;
Numeric MyEntryPrice;
Numeric MyExitPrice;
Numeric stopLossPoint;
Numeric offSetDots;
bool cross1;
bool cross2;
Begin
offSetDots = nOffSet * MinMove * PriceScale;
a1=Highest(high[1],K1);
a2=Lowest(low[1],K2);
cross1=CrossOver(high,a1);
cross2=CrossUnder(low,a2);
If(cross1 && MarketPosition<>1)
{
Buy(1,a1+offSetDots);
}
If(cross2 && MarketPosition<>-1)
{
SellShort(1,a2-offSetDots);
}
stopLossPoint = stopLossSet * MinMove * PriceScale;
If(MarketPosition == 1)
{
myEntryPrice = AvgEntryPrice;
If(low <= myEntryPrice - stopLossPoint)
{
myExitPrice = myEntryPrice - stopLossPoint;
If(open < myExitPrice) myExitPrice = open;
Sell(0,myExitPrice);
}
}
else If (MarketPosition == -1)
{
myEntryPrice = AvgEntryPrice;
If(High >= myEntryPrice + stopLossPoint)
{
myExitPrice = myEntryPrice + stopLossPoint;
If(open > myExitPrice) myExitPrice = open;
BuyToCover(0,myExitPrice);
}
}
End
有思路,想編寫各種指標公式,程序化交易模型,選股公式,預(yù)警公式的朋友
可聯(lián)系技術(shù)人員 QQ: 262069696 進行 有償 編寫!(不貴!點擊查看價格!)
相關(guān)文章
-
沒有相關(guān)內(nèi)容