想写个 突破第一次开仓后的高点再加仓,但是图标上没显示 - TradeBlazer公式 [开拓者 TB]
- 咨询内容:
请大神们帮忙看下,
想写个 突破第一次开仓后的高点再加仓,但是图标上没显示
谢谢
Params
numeric length1(20);
numeric atrlength(20);
numeric mindiff(0);
Numeric lots(1);
Numeric trailstop(1.5);
Vars
NumericSeries hhv;
NumericSeries llv;
numericseries atrvalue;
Numeric tmindiff;
NumericSeries hiafterentry;
NumericSeries loafterentry;
Begin
hhv=Highest(high,length1);
llv=Lowest(low,length1);
atrvalue=AvgTrueRange(atrlength);
tmindiff=mindiff*MinMove*PriceScale;
if(MarketPosition<>1 And high>=hhv[1])
{
Buy(lots,Max(open,hhv[1])+tmindiff);
}
if(marketposition<>-1 and low<=llv[1])
{
SellShort(lots,Min(low,llv[1])-tmindiff);
}
if(marketposition==1 and barssinceentry==0)
hiafterentry=high;
if (marketposition==1 and barssinceentry>=1)
hiafterentry=Max(high,hiafterentry);
if (marketposition==-1 and BarsSinceEntry==0);
loafterentry=low;
if (marketposition==-1 and BarsSinceEntry>=1)
loafterentry=Min(low,loafterentry);
if (marketposition==1 and barssinceentry>=1 and high>=hiafterentry[1])
{
buy(lots,max(open,hiafterentry)+tmindiff);
}
if (marketposition==-1 and barssinceentry>=1 and low<=loafterentry[1])
{
sellshort(lots,min(open,loafterentry)-tmindiff);
}
End - TB技术人员: 别说LZ限制了加仓次数啊,,,,在交易设置里面
有思路,想编写各种指标公式,程序化交易模型,选股公式,预警公式的朋友
可联系技术人员 QQ: 262069696 进行 有偿 编写!(不贵!点击查看价格!)
- 上一篇:close[-3]写法对吗
- 下一篇:请问下大家手续费和冲击成本的问题
相关文章
-
指定的模型还没有相关内容!