设为首页收藏本站

 找回密码
 注册
查看: 3684|回复: 4
打印 上一主题 下一主题

新年快乐 [复制链接]

Rank: 2

精华
0
UID
226268
积分
64
帖子
45
主题
10
阅读权限
30
注册时间
2016-1-6
最后登录
2023-9-28
1#
发表于 2017-1-25 18:26:08 |显示全部楼层
根本没法用,严重偷价,被这垃圾骗了1000块,大家别被骗了!

使用道具 举报

Rank: 2

精华
0
UID
226268
积分
64
帖子
45
主题
10
阅读权限
30
注册时间
2016-1-6
最后登录
2023-9-28
2#
发表于 2017-1-25 18:26:25 |显示全部楼层
Params        
        Numeric XiShu1(0.65);
         Numeric XiShu2(0.65);        
        Numeric Lots(1);   //手数,自己想开几手就设置几手
         Numeric Hyl(0.8);   //最高盈利百分比,1表示1%
         Numeric Hc(0.3);   //回撤百分比,1表示1%
Vars        
         NumericSeries OpenToday;                     
         NumericSeries Band1;
         NumericSeries Band2;
         NumericSeries UpperBand;
         NumericSeries LowerBand;
         NumericSeries SellBand;
         NumericSeries BuyToCoverBand;        
        NumericSeries myEntryPrice;
         
        NumericSeries isHyl;//是否达到最大盈利
        
Begin
If(Date >= 20170501) return;
         OpenToday=OpenD(0);
         
        Band1=(HighD(1)-LowD(1))*Max(XiShu1,XiShu2);
         UpperBand=OpenToday+Band1;
         LowerBand=OpenToday-Band1;
         
        Band2=(HighD(1)-LowD(1))*Min(XiShu1,XiShu2);
         SellBand=OpenToday-Band2;
         BuyToCoverBand=OpenToday+Band2;
         
    PlotNumeric("UpperBand",UpperBand);
         PlotNumeric("LowerBand",LowerBand);
         PlotNumeric("SellBand",SellBand);
         PlotNumeric("BuyToCoverBand",BuyToCoverBand);        
        //PlotNumeric("OpenToday",OpenToday);
        
        
        
        If(MarketPosition==1 and (High[1]-EntryPrice)/EntryPrice>=Hyl/100)
         {
           isHyl=1;
         }
         If(MarketPosition==1 and isHyl[1]==1 and (Low-EntryPrice)/EntryPrice<=Hc/100)
         {
           isHyl=0;
           Sell(Lots,EntryPrice*(1+Hc));
         }
         
        
        If(MarketPosition==-1 and (EntryPrice-Low[1])/EntryPrice>=Hyl/100)
         {
           isHyl=1;
         }
         If(MarketPosition==-1 and isHyl[1]==1 and (EntryPrice-High)/EntryPrice<=Hc/100)
         {
           isHyl=0;
           BuyToCover(Lots,EntryPrice*(1-Hc));
         }
         
        
        
        
        
        
    If(MarketPosition==-1 && High>=BuyToCoverBand)        
        {
                If(Open>BuyToCoverBand) myEntryPrice=Open;
                 Else myEntryPrice=BuyToCoverBand;                                
            BuyToCover(Lots,myEntryPrice);
         }        
        If(MarketPosition==1 && Low<=SellBand)
         {
                 If(Open<SellBand) myEntryPrice=Open;
                 Else myEntryPrice=SellBand;
                 Sell(Lots,myEntryPrice);
         }
         If(MarketPosition!=-1 && Low<=LowerBand)
         {
                 If(Open<LowerBand) myEntryPrice=Open;
                 Else myEntryPrice=LowerBand;
                 SellShort(Lots,myEntryPrice);
         }
         If(MarketPosition!=1 && High>=UpperBand)
         {
                If(Open>UpperBand) myEntryPrice=Open;
                 Else myEntryPrice=UpperBand;                                
            Buy(Lots,myEntryPrice);
         }
End        

使用道具 举报

Rank: 2

精华
0
UID
226268
积分
64
帖子
45
主题
10
阅读权限
30
注册时间
2016-1-6
最后登录
2023-9-28
3#
发表于 2017-1-25 18:26:44 |显示全部楼层
我贴出来上述公式大家看看,记住这个人,避免上当受骗。

使用道具 举报

Rank: 2

精华
0
UID
226268
积分
64
帖子
45
主题
10
阅读权限
30
注册时间
2016-1-6
最后登录
2023-9-28
4#
发表于 2017-1-25 18:27:08 |显示全部楼层
偷价之处在于:
         If(MarketPosition==1 and (High[1]-EntryPrice)/EntryPrice>=Hyl/100)  //当有多单,且在上一根K时盈利最大达到Hyl%时
         {
           isHyl=1;
         }
         If(MarketPosition==1 and isHyl[1]==1 and (Low-EntryPrice)/EntryPrice<=Hc/100)  //当有多单,且上上一根K盈利最大达到Hyl%时,本根K盈利小于Hyl%时
         {
           isHyl=0;
           Sell(Lots,EntryPrice*(1+Hc)); //以盈利HC%的价格平多单,此处偷价!!!其实根本不能保证以以盈利HC%的价格平多单,说不定在上根K或者上上根K就跌的找不到了,空单同理。
         }

使用道具 举报

Rank: 2

精华
0
UID
226268
积分
64
帖子
45
主题
10
阅读权限
30
注册时间
2016-1-6
最后登录
2023-9-28
5#
发表于 2017-1-25 18:28:00 |显示全部楼层
大家记住楼主这个骗子“zhilifu”

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

bottom

静态版|手机版|联系我们|交易开拓者 ( 粤ICP备07044698   

GMT+8, 2024-5-5 13:07

Powered by Discuz! X2 LicensedChrome插件扩展

© 2011-2012 交易开拓者 Inc.

回顶部