当前位置:分析家公式网 → 股票公式 → 开拓者公式 → 一键转帖:开拓者K线形态多空策略源码(用EMA过小震荡行情)
软件名称:[B]开拓者K线形态多空策略源码(用EMA过小震荡行情)[/B]
软件类型:国产软件
运行环境:Win2000/WinXP/Win2003/WinVista
软件语言:简体中文
授权方式:共享软件
软件大小:0 Bytes
官方主页:Home Page
更新时间:2013-03-09 00:04:23
软件简介:
- 内容:
开多条件为:当前K线的收盘价比上根K线的收盘价高出N点,连续3次达到条件,则开多。开空反之。用EMA过滤。
Params
Numeric lots(1);
Numeric p1(5);
Numeric p2(5);
Numeric Length(5);
Vars
BoolSeries Cha1;
BoolSeries Cha2;
NumericSeries Ema;
Begin
Cha1=Close[1]-Close[2]>P1*MinMove*PriceScale;
Cha2=Close[2]-Close[1]>p2*MinMove*PriceScale;
Ema=XAverage(XAverage(XAverage(XAverage(Close,Length),Length),Length),Length);
If(Cha1 and Cha1[1] and Cha1[2] and Close[1]>Ema[1])
{
Buy(lots,Open);
}
If(Cha2 and Cha2[1] and Cha2[2] and Close[1]<Ema[1])
{
SellShort(lots,Open);
}
End
[url=http://www.70822.com/soft/sort013/sort083/down-59412.html]开拓者K线形态多空策略源码(用EMA过小震荡行情)[/url]