当前位置:分析家公式网 → 股票公式 → 开拓者公式 → 一键转帖:独特的思路,开拓者抛物线转向交易系统源码分享
软件名称:[B]独特的思路,开拓者抛物线转向交易系统源码分享[/B]
软件类型:国产软件
运行环境:Win2000/WinXP/Win2003/WinVista
软件语言:简体中文
授权方式:共享软件
软件大小:0 Bytes
官方主页:Home Page
更新时间:2013-03-18 02:43:03
软件简介:
- 思路内容: 刚才看到群里讨论了会SAR,很多人也想写一个SAR系统,最近比较忙,利用午饭时间写了个SAR系统,大家拿去扩充吧
- 原创作品,转载注明出处 作者 穿堂风
- //------------------------------------------------------------------------
- // 简称: SAR_system
- // 名称:
- // 类别: 公式应用
- // 类型: 用户应用
- // 输出: 穿堂风
- //------------------------------------------------------------------------
-
- Params
- Numeric AfStep(0.02);
- Numeric AfLimit(0.2) ;
- Numeric malen(120);
- Numeric stopLoss(1);
- Numeric BuyLots(1);
- Numeric offset(0);
- Vars
- Numeric oParCl( 0 );
- Numeric oParOp( 0 );
- Numeric oPosition( 0 );
- Numeric oTransition( 0 );
- NumericSeries oParOp_s;
- Numeric oParOp_p;
- Numeric i_offset;
- Numeric ma;
- Bool bUpline;
- string strkey;
- string strValue;
- Numeric i_stopLoss;
-
- Begin
-
- ma = Average(Open,malen);
- bUpline = Open>= ma;
- ParabolicSAR( AfStep, AfLimit, oParCl, oParOp, oPosition, oTransition ) ;
- oParOp_s = oParOp;
- oParOp_p = oParOp_s[1];
- i_offset = offset*MinMove*PriceScale;
- i_stopLoss = stopLoss*(OpenD(0)/100);
-
- Commentary("oParOp:"+Text(oParOp));
- Commentary("oTransition:"+Text(oTransition));
- Commentary("oPosition:"+Text(oPosition));
- If(CurrentBar>malen)
- {
- PlotNumeric("oParCl",oParCl);
- If(malen != 0)
- {
- PlotNumeric("ma",ma);
- }
-
-
- If(MarketPosition == 0)
- {
- If(malen == 0)
- {
- bUpline = True;
- }
-
- If(oTransition == 1 and bUpline)
- {
- Buy(BuyLots,Max(Open,oParOp_p)+i_offset);
- Return;
- }
-
- If(malen == 0)
- {
- bUpline = False;
- }
-
- If(oTransition == -1 and bUpline==False)
- {
- SellShort(BuyLots,Min(Open,oParOp_p)-i_offset);
- Return;
- }
- }
-
- If(MarketPosition == 1)
- {
- If(malen == 0)
- {
- bUpline = False;
- }
-
- If(LastEntryPrice-Low>=i_stopLoss)
[url=http://www.70822.com/soft/sort013/sort083/down-59383.html]独特的思路,开拓者抛物线转向交易系统源码分享[/url]
- //------------------------------------------------------------------------