百度手机app下载:一目均衡表在哪里可以学到呀?

来源:百度文库 编辑:偶看新闻 时间:2024/04/25 14:40:42
览次数:15次
一目均衡表在哪里可以学到呀。。。。。为什么中国没有这方面的书籍呀。。。。谁可以教我。
| 一级
日本云是吧,主要是分上升云和下降云,默认蓝色的基准线,这些很好用,最稳妥的方法就是价格在云上只做多,价格在云下只做空,找好入场点就行了,基准线的原理是回调50%,比较有效的支撑阻力,前几年国际上还讨论过ichimoku的参数,9,26,52最好,该指标最好用于H1,H4,D1震荡行情不好做,会失灵,如果H1周期用云图,判断是否震荡,可依据ADX在H1里,白线是否在25和20下来判断震荡我的qq空间有讲解313009936 代码//+------------------------------------------------------------------+//|                                                     Ichimoku.mq4 |//|                      Copyright ?2004, MetaQuotes Software Corp. |//|                                       http://www.metaquotes.net/ |//+------------------------------------------------------------------+#property copyright "Copyright ?2004, MetaQuotes Software Corp."#property link      "http://www.metaquotes.net/"#property indicator_chart_window#property indicator_buffers 7#property indicator_color1 Red#property indicator_color2 Blue#property indicator_color3 SandyBrown#property indicator_color4 Thistle#property indicator_color5 Lime#property indicator_color6 SandyBrown#property indicator_color7 Thistle//---- input parametersextern int Tenkan=9;extern int Kijun=26;extern int Senkou=52;//---- buffersdouble Tenkan_Buffer[];double Kijun_Buffer[];double SpanA_Buffer[];double SpanB_Buffer[];double Chinkou_Buffer[];double SpanA2_Buffer[];double SpanB2_Buffer[];//----int a_begin;//+------------------------------------------------------------------+//| Custom indicator initialization function                         |//+------------------------------------------------------------------+int init()  {//----   SetIndexStyle(0,DRAW_LINE);   SetIndexBuffer(0,Tenkan_Buffer);   SetIndexDrawBegin(0,Tenkan-1);   SetIndexLabel(0,"Tenkan Sen");//----   SetIndexStyle(1,DRAW_LINE);   SetIndexBuffer(1,Kijun_Buffer);   SetIndexDrawBegin(1,Kijun-1);   SetIndexLabel(1,"Kijun Sen");//----   a_begin=Kijun; if(a_beginTenkan) i=Bars-counted_bars-1;   while(i>=0)     {      high=High[i]; low=Low[i]; k=i-1+Tenkan;      while(k>=i)        {         price=High[k];         if(highprice)  low=price;         k--;        }      Tenkan_Buffer[i]=(high+low)/2;      i--;     }//---- Kijun Sen   i=Bars-Kijun;   if(counted_bars>Kijun) i=Bars-counted_bars-1;   while(i>=0)     {      high=High[i]; low=Low[i]; k=i-1+Kijun;      while(k>=i)        {         price=High[k];         if(highprice)  low=price;         k--;        }      Kijun_Buffer[i]=(high+low)/2;      i--;     }//---- Senkou Span A   i=Bars-a_begin+1;   if(counted_bars>a_begin-1) i=Bars-counted_bars-1;   while(i>=0)     {      price=(Kijun_Buffer[i]+Tenkan_Buffer[i])/2;      SpanA_Buffer[i]=price;      SpanA2_Buffer[i]=price;      i--;     }//---- Senkou Span B   i=Bars-Senkou;   if(counted_bars>Senkou) i=Bars-counted_bars-1;   while(i>=0)     {      high=High[i]; low=Low[i]; k=i-1+Senkou;      while(k>=i)        {         price=High[k];         if(highprice)  low=price;         k--;        }      price=(high+low)/2;      SpanB_Buffer[i]=price;      SpanB2_Buffer[i]=price;      i--;     }//---- Chinkou Span   i=Bars-1;   if(counted_bars>1) i=Bars-counted_bars-1;   while(i>=0) { Chinkou_Buffer[i]=Close[i]; i--; }//----   return(0);  }//+------------------------------------------------------------------+