当前位置:分析家公式网 → 股票公式 → 开拓者公式 → 一键转帖:开拓者夹板交易策略源码(振荡交易模型)
软件名称:[B]开拓者夹板交易策略源码(振荡交易模型)[/B]
软件类型:国产软件
运行环境:Win2000/WinXP/Win2003/WinVista
软件语言:简体中文
授权方式:共享软件
软件大小:0 Bytes
官方主页:Home Page
更新时间:2013-03-12 04:50:42
软件简介:
- 内容: 夹板在实盘中是一个很常见的运用,用于吃住震荡行情。它有个上轨和一个下轨,行情突破上轨就做空;突破下轨就做多,在上下轨之间来回吃。
OpenCoverFor2Lines函数代码
- 源码:
- // 返回值: 1:有所动作,0:没有动作
- // 返回值为非零时,把当前要建立的头寸大小和方向写入needPosition,把以什么价咯去建立该头寸写入needPrice
- // 返回值: 1:有所动作,0:没有动作
- // 返回值为非零时,把当前要建立的头寸大小和方向写入needPosition,把以什么价咯去建立该头寸写入needPrice
-
- Params
- Numeric currentPosition(0); // 当前头寸,可正可负
- Numeric firstLots(0);
-
- Numeric wantShort(120); // 开空仓位置
- Numeric wantLong(8); // 开多仓位置
-
- Numeric wantStopShort(0); // 空头止损的位置
- Numeric wantStopLong(0); // 多头止损的位置
-
-
- // 注意:以下两个都是引用变量!!!!
- NumericRef needPosition; // 经过计算后的当前头寸,正数:建立多仓,负数:建立空仓,零:平光所有头寸
- NumericRef needPrice; // 建立needPosition时的价咯
-
- Vars
- Numeric tem;
-
- Begin
-
- // 14:55:00平掉当日所有头寸
- if(time >= 0.1455 && currentPosition != 0)
- {
- needPosition = 0;
- needPrice = close ;
- return 1;
- }
- if(currentPosition == 0)
- {
- // 无仓,准备侍机开仓
- if(close <= wantLong)
- {
- // 多头 www.70822.com
- needPosition = firstLots;
- needPrice = wantLong;
- return 1;
- }
- if(close >= wantShort)
- {
- // 空头
- needPosition = -1 * firstLots;
- needPrice = wantShort;
- return 1;
-
- }
- return 0;
- }
-
- if(currentPosition > 0)
- {
- // 持多仓,准备止损或反转
- if(close >= wantShort)
- {
- // 反转
- needPosition = -1 * firstLots;
- needPrice = wantShort;
- return 1;
- }
-
- if(close <= wantStopLong)
- {
- // 止损
- needPosi
[url=http://www.70822.com/soft/sort013/sort083/down-59402.html]开拓者夹板交易策略源码(振荡交易模型)[/url]
- // 返回值: 1:有所动作,0:没有动作