返回列表 发布新帖

依然喜欢你-----保证金(第25周)

评论1171

Leonardo1977Lv.10 发表于 2005-10-27 21:01 | 查看全部
https://www.y2cn.com
原帖由 cashmere 于 2005-10-27 20:57 发表

点钞票去了!h:

你把我正在用的这个指标解压缩放在你的MT4里,作为一个辅助决策工具。特别你现在还不能很好地设立止损的情况下,让这个系统给你提供一个参考。
凡事相信 凡事包容  永不止息
回复 点赞

使用道具 举报

cashmere楼主Lv.64 发表于 2005-10-27 21:02 | 查看全部
原帖由 Leonardo1977 于 2005-10-27 20:49 发表

不能这么讲,在上升趋势中,一个回调就可以形成长上影K线,不过却不是看跌的信号。
长上影线,有一部分是看跌的,有一部分则未必。这个需要经验。当然不能追求完美。只要能较好地赚钱就行了。

恩.知道了!你的图上真像地雷战!
回复 点赞

使用道具 举报

cashmere楼主Lv.64 发表于 2005-10-27 21:05 | 查看全部
原帖由 happy88888 于 2005-10-27 21:00 发表

你今天收获大不大??

停止做单了!判2缓3 的徒刑!
回复 点赞

使用道具 举报

happy88888Lv.64 发表于 2005-10-27 21:05 | 查看全部
原帖由 zhengqian 于 2005-10-27 20:58 发表

真的假的。你今天4700都又赔上拉
让快乐永远保鲜!
回复 点赞

使用道具 举报

Leonardo1977Lv.10 发表于 2005-10-27 21:08 | 查看全部
原帖由 zhengqian 于 2005-10-27 20:58 发表

斯坦利 克罗的交易手法里,是不用追涨的方式的。
他是我喜欢的一位前辈。这是他的著作,作个参考吧。

http://www.mfzq.com.cn/Blog/Diar ... ta=S&Tid=391153
凡事相信 凡事包容  永不止息
回复 点赞

使用道具 举报

cashmere楼主Lv.64 发表于 2005-10-27 21:08 | 查看全部
原帖由 后乐 于 2005-10-27 20:58 发表
我开始接触所谓的外汇投资也才一年半而已,正在学习精品

希望你多赚美美!
回复 点赞

使用道具 举报

Leonardo1977Lv.10 发表于 2005-10-27 21:09 | 查看全部
//+------------------------------------------------------------------+
//|                                         PriceChannel_Stop_v1.mq4 |
//|                           Copyright ?2005, TrendLaboratory Ltd. |
//|                                       E-mail: igorad2004@list.ru |
//+------------------------------------------------------------------+
#property copyright "Copyright ?2005, TrendLaboratory Ltd."
#property link      "E-mail: igorad2004@list.ru"

#property indicator_chart_window
#property indicator_buffers 6
#property indicator_color1 Aqua
#property indicator_color2 Magenta
#property indicator_color3 Aqua
#property indicator_color4 Magenta
#property indicator_color5 Aqua
#property indicator_color6 Magenta
//---- input parameters
extern int ChannelPeriod=9;
extern double Risk=0.30;
extern int Signal=1;
extern int Line=1;
extern int Nbars=1000;
//---- indicator buffers
double UpTrendBuffer[];
double DownTrendBuffer[];
double UpTrendSignal[];
double DownTrendSignal[];
double UpTrendLine[];
double DownTrendLine[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
  {
   string short_name;
//---- indicator line
   SetIndexBuffer(0,UpTrendBuffer);
   SetIndexBuffer(1,DownTrendBuffer);
   SetIndexBuffer(2,UpTrendSignal);
   SetIndexBuffer(3,DownTrendSignal);
   SetIndexBuffer(4,UpTrendLine);
   SetIndexBuffer(5,DownTrendLine);
   SetIndexStyle(0,DRAW_ARROW);
   SetIndexStyle(1,DRAW_ARROW);
   SetIndexStyle(2,DRAW_ARROW);
   SetIndexStyle(3,DRAW_ARROW);
   SetIndexStyle(4,DRAW_LINE);
   SetIndexStyle(5,DRAW_LINE);
   SetIndexArrow(0,159);
   SetIndexArrow(1,159);
   SetIndexArrow(2,108);
   SetIndexArrow(3,108);
//---- name for DataWindow and indicator subwindow label
   short_name="PriceChannel_Stop_v1("+ChannelPeriod+")";
   IndicatorShortName(short_name);
   SetIndexLabel(0,"UpTrend Stop");
   SetIndexLabel(1,"DownTrend Stop");
   SetIndexLabel(2,"UpTrend Signal");
   SetIndexLabel(3,"DownTrend Signal");
   SetIndexLabel(4,"UpTrend Line");
   SetIndexLabel(5,"DownTrend Line");
//----
   SetIndexDrawBegin(0,ChannelPeriod);
   SetIndexDrawBegin(1,ChannelPeriod);
   SetIndexDrawBegin(2,ChannelPeriod);
   SetIndexDrawBegin(3,ChannelPeriod);
   SetIndexDrawBegin(4,ChannelPeriod);
   SetIndexDrawBegin(5,ChannelPeriod);
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| PriceChannel_Stop_v1                                             |
//+------------------------------------------------------------------+
int start()
  {
   int    i,shift,trend;
   double high, low, price;
   double smax[5000],smin[5000],bsmax[5000],bsmin[5000];
   
   for (shift=Nbars-1;shift>=0;shift--)
   {
   UpTrendBuffer[shift]=EMPTY_VALUE;
   DownTrendBuffer[shift]=EMPTY_VALUE;
   UpTrendSignal[shift]=EMPTY_VALUE;
   DownTrendSignal[shift]=EMPTY_VALUE;
   UpTrendLine[shift]=EMPTY_VALUE;
   DownTrendLine[shift]=EMPTY_VALUE;
   }
   for (shift=Nbars-ChannelPeriod-1;shift>=0;shift--)
   {       
      high=High[shift]; low=Low[shift]; i=shift-1+ChannelPeriod;
      while(i>=shift)
        {
         price=High;
         if(high<price) high=price;
         price=Low;
         if(low>price)  low=price;
         i--;
        }
     smax[shift]=high;
     smin[shift]=low;
     
     bsmax[shift]=smax[shift]-(smax[shift]-smin[shift])*Risk;
          bsmin[shift]=smin[shift]+(smax[shift]-smin[shift])*Risk;
     
     if (Close[shift]>bsmax[shift+1])  trend=1;
          if (Close[shift]<bsmin[shift+1])  trend=-1;
                                 
          if(trend>0 && bsmin[shift]<bsmin[shift+1]) bsmin[shift]=bsmin[shift+1];
          if(trend<0 && bsmax[shift]>bsmax[shift+1]) bsmax[shift]=bsmax[shift+1];
          
          if (trend>0)
          {
             if (Signal>0 && UpTrendBuffer[shift+1]==-1.0)
             {
             UpTrendSignal[shift]=bsmin[shift];
             if(Line>0) UpTrendLine[shift]=bsmin[shift];
             }
             else
             {
             UpTrendBuffer[shift]=bsmin[shift];
             if(Line>0) UpTrendLine[shift]=bsmin[shift];
             UpTrendSignal[shift]=-1;
             }
          if (Signal==2) UpTrendBuffer[shift]=0;   
          DownTrendBuffer[shift]=-1.0;
          DownTrendLine[shift]=EMPTY_VALUE;
          }
          if (trend<0)
          {
          if (Signal>0 && DownTrendBuffer[shift+1]==-1.0)
             {
             DownTrendSignal[shift]=bsmax[shift];
             if(Line>0) DownTrendLine[shift]=bsmax[shift];
             }
             else
             {
             DownTrendBuffer[shift]=bsmax[shift];
             if(Line>0)DownTrendLine[shift]=bsmax[shift];
             DownTrendSignal[shift]=-1;
             }
          if (Signal==2) DownTrendBuffer[shift]=0;   
          UpTrendBuffer[shift]=-1.0;
          UpTrendLine[shift]=EMPTY_VALUE;
          }
          
         
   }
   return(0);
  }
//+------------------------------------------------------------------+
凡事相信 凡事包容  永不止息
回复 点赞

使用道具 举报

happy88888Lv.64 发表于 2005-10-27 21:10 | 查看全部
原帖由 cashmere 于 2005-10-27 21:05 发表

停止做单了!判2缓3 的徒刑!

给数数
方法都给你拉。还不用。等着就馒头吃啊h:h:h:
Snap1.gif
让快乐永远保鲜!
回复 点赞

使用道具 举报

cashmere楼主Lv.64 发表于 2005-10-27 21:12 | 查看全部
原帖由 zhengqian 于 2005-10-27 20:58 发表

你真不幸!倒在了黎明前!
回复 点赞

使用道具 举报

后乐Lv.10 发表于 2005-10-27 21:13 | 查看全部
原帖由 zhengqian 于 2005-10-27 20:58 发表

同感,1.7820买入的英镑高位没跑等到块拉高时(1.7850)平仓
平仓后英镑至1.7900
回复 点赞

使用道具 举报

回复

本版积分规则

关灯 在本版发帖
扫一扫添加微信客服
QQ客服返回顶部
快速回复 返回顶部 返回列表