计算指定时间内亏损次数
程序员文章站
2022-07-05 11:06:51
...
获得亏损交易的总手数
NumLosTrades()
获得亏损交易的总手数,已考虑交易费用,返回值为整型。
Params
Numeric length(10);
// 交易手数
Numeric lots(6);
Vars
// 均线
Numeric ma;
// 历史亏损手数
NumericSeries lost_total;
// 今天亏损手数
Numeric lost_today;
Begin
// 开盘价均线
ma = Average(Open, length);
// 历史盈利次数
lost_total = NumLosTrades();
// 今天亏损手数:历史亏损手数减去昨天历史亏损手数
lost_today = (lost_total - lost_total[BarsSinceToday()]) / lots;
// 最高价大于均价,并且当前持仓建仓次数小于1,日内两点50以后禁止开单
If (High > ma And CurrentEntries() < 1 And Time < 0.1420)
{
Buy(lots, IntPart(ma) + 1);
}
// 最低价小于均价,并且不允许在建仓k线平仓
If (Low < ma And BarsSinceLastEntry() > 2)
{
Sell(lots, IntPart(ma) - 1);
}
// 两点57分自动平仓,或者在禁止开单后出现两根阳线,以开盘价平仓
If (Time > 0.1430 Or (Time > 0.1420 And Close[1] > Open[1] And Close[2] > Open[2]))
{
Sell(lots, Open);
}
PlotNumeric("ma", ma);
PlotString("win_today", Text(lost_today), L);
End