MQL4 및 MQL5에 대한 초보자 질문, 알고리즘 및 코드에 대한 도움말 및 토론 - 페이지 117

 
Rustam Bikbulatov :
비용이 청구되나요?
글쎄, 시간이 많은 누군가가 그것을 가져 가면 아마도 당신은 운이 좋을 것입니다. 그리고 네, 시간은 돈입니다, 죄송합니다 ;)

또는 스스로 해보십시오. 그러면 그들은 당신을 도울 것입니다. 스스로 배우고 무언가가 효과가없는 사람들에게만 도우십시오.
 
Artyom Trishkin :
쓰기 시작합니다. 작동하지 않는 것 - 질문 - 우리가 도울 것입니다.

아니면 할 필요가 있나요?
이 표시등을 연결하고 싶었지만 하나의 오류가 나옵니다. 나는 하루 종일 운전을 했다
파일:
tyyu.mq4  5 kb
 
Rustam Bikbulatov :
이 표시등을 연결하고 싶었지만 하나의 오류가 발생합니다. 나는 하루 종일 운전을 했다
코드를 보여주고 어디에 연결하려고 하며 거기에서 어떤 부분이 적합하지 않습니까?

SRC 버튼을 사용하여 코드를 삽입하여 수행하려는 작업을 즉시 볼 수 있도록 하고 이러한 코드를 시스템에 업로드하지 마십시오. 이미 너무 많습니다.
 
Rustam Bikbulatov :
이 표시등을 연결하고 싶었지만 하나의 오류가 나옵니다. 나는 하루 종일 운전을 했다
'시작' - 함수 가 이미 정의되어 있고 본문이 있습니다. 소리 이동 평균.mq4 178 5

파일:
 
Artyom Trishkin :
코드를 보여주고 어디에 연결하려고 하며 거기에서 어떤 부분이 적합하지 않습니까?

SRC 버튼을 사용하여 코드를 삽입하여 수행하려는 작업을 즉시 볼 수 있도록 하고 이러한 코드를 시스템에 업로드하지 마십시오. 이미 너무 많습니다.
어떤 종류의 버튼이 그렇게 마술적인지 안다면
 
Rustam Bikbulatov :
어떤 종류의 버튼이 그렇게 마술적인지 안다면

여기 당신이 간다

포럼 도움말을 읽어보세요. 링크를 제공하거나 직접 찾을 수 있습니까?

 
//+------------------------------------------------------------------+
//|                                        Custom Moving Average.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 1
#property indicator_color1 Red
//---- indicator parameters
extern int MA_Period=13;
extern int MA_Shift=0;
extern int MA_Method=0;
extern double Alert_Level = 0;
//---- indicator buffers
double ExtMapBuffer[];
double Buffer2[];
//----
int ExtCountedBars=0;
int br1=0;
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
  {
   int    draw_begin;
   string short_name;
//---- drawing settings
   SetIndexStyle(0,DRAW_LINE);
   SetIndexShift(0,MA_Shift);
   IndicatorDigits(MarketInfo(Symbol(),MODE_DIGITS));
   if(MA_Period<2) MA_Period=13;
   draw_begin=MA_Period-1;
//---- indicator short name
   switch(MA_Method)
     {
      case 1 : short_name="EMA(";  draw_begin=0; break;
      case 2 : short_name="SMMA("; break;
      case 3 : short_name="LWMA("; break;
      default :
         MA_Method=0;
         short_name="SMA(";
     }
   IndicatorShortName(short_name+MA_Period+")");
   SetIndexDrawBegin(0,draw_begin);
//---- indicator buffers mapping
   SetIndexBuffer(0,ExtMapBuffer);
//---- initialization done
   return(0);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int start()
  {
   if(Bars<=MA_Period) return(0);
   ExtCountedBars=IndicatorCounted();
//---- check for possible errors
   if (ExtCountedBars<0) return(-1);
//---- last counted bar will be recounted
   if (ExtCountedBars>0) ExtCountedBars--;
//----
   switch(MA_Method)
     {
      case 0 : sma();  break;
      case 1 : ema();  break;
      case 2 : smma(); break;
      case 3 : lwma();
     }
//---- done
   return(0);
  }
//+------------------------------------------------------------------+
//| Simple Moving Average                                            |
//+------------------------------------------------------------------+
void sma()
  {
   double sum=0;
   int    i,pos=Bars-ExtCountedBars-1;
//---- initial accumulation
   if(pos<MA_Period) pos=MA_Period;
   for(i=1;i<MA_Period;i++,pos--)
      sum+=Close[pos];
//---- main calculation loop
   while(pos>=0)
     {
      sum+=Close[pos];
      ExtMapBuffer[pos]=sum/MA_Period;
           sum-=Close[pos+MA_Period-1];
           pos--;
     }
//---- zero initial bars
   if(ExtCountedBars<1)
      for(i=1;i<MA_Period;i++) ExtMapBuffer[Bars-i]=0;
  }
//+------------------------------------------------------------------+
//| Exponential Moving Average                                       |
//+------------------------------------------------------------------+
void ema()
  {
   double pr=2.0/(MA_Period+1);
   int    pos=Bars-2;
   if(ExtCountedBars>2) pos=Bars-ExtCountedBars-1;
//---- main calculation loop
   while(pos>=0)
     {
      if(pos==Bars-2) ExtMapBuffer[pos+1]=Close[pos+1];
      ExtMapBuffer[pos]=Close[pos]*pr+ExtMapBuffer[pos+1]*(1-pr);
           pos--;
     }
  }
//+------------------------------------------------------------------+
//| Smoothed Moving Average                                          |
//+------------------------------------------------------------------+
void smma()
  {
   double sum=0;
   int    i,k,pos=Bars-ExtCountedBars+1;
//---- main calculation loop
   pos=Bars-MA_Period;
   if(pos>Bars-ExtCountedBars) pos=Bars-ExtCountedBars;
   while(pos>=0)
     {
      if(pos==Bars-MA_Period)
        {
         //---- initial accumulation
         for(i=0,k=pos;i<MA_Period;i++,k++)
           {
            sum+=Close[k];
            //---- zero initial bars
            ExtMapBuffer[k]=0;
           }
        }
      else sum=ExtMapBuffer[pos+1]*(MA_Period-1)+Close[pos];
      ExtMapBuffer[pos]=sum/MA_Period;
           pos--;
     }
  }
//+------------------------------------------------------------------+
//| Linear Weighted Moving Average                                   |
//+------------------------------------------------------------------+
void lwma()
  {
   double sum=0.0,lsum=0.0;
   double price;
   int    i,weight=0,pos=Bars-ExtCountedBars-1;
//---- initial accumulation
   if(pos<MA_Period) pos=MA_Period;
   for(i=1;i<=MA_Period;i++,pos--)
     {
      price=Close[pos];
      sum+=price*i;
      lsum+=price;
      weight+=i;
     }
//---- main calculation loop
   pos++;
   i=pos+MA_Period;
   while(pos>=0)
     {
      ExtMapBuffer[pos]=sum/weight;
      if(pos==0) break;
      pos--;
      i--;
      price=Close[pos];
      sum=sum-lsum+price*MA_Period;
      lsum-=Close[i];
      lsum+=price;
     }
//---- zero initial bars
   if(ExtCountedBars<1)
      for(i=1;i<MA_Period;i++) ExtMapBuffer[Bars-i]=0;
  }
//+------------------------------------------------------------------+

int start()
   {int limit;
    int counted_bars = IndicatorCounted();
//---- check for possible errors
    if(counted_bars < 0)
        return(-1);
//---- last counted bar will be recounted
    if(counted_bars > 0)
        counted_bars--;
    limit = Bars - counted_bars;
    if(counted_bars==0) limit--;
//----
    for(int i = limit; i >=0; i--)
    //for(int i = 1000; i >=0; i--)
       {
        Buffer2[i]=iMA(NULL,1,60,0,1,6,0);
       }
    if(((Buffer2[2]<0 && Buffer2[1]>Alert_Level) ||
        (Buffer2[2]>0 && Buffer2[1]<Alert_Level)) && br1<Bars  )
      {
       PlaySound("alert.wav"); Sleep(500);
       PlaySound("alert.wav"); Sleep(500);
       PlaySound("alert.wav"); br1=Bars;
       Alert("На ",Symbol()," \"", "\" пересечение с =0= ");
       Print("На ",Symbol()," \"", "\" пересечение с =0= ");
      }
  }
//+------------------------------------------------------------------+
 

또 다른 재미있는 것

두 배 OP = 5.00000

TP = (OP/100);

인쇄 ("TP= ",TP);

2017.02.09 21:36:03.650 2015.01.05 04:00:00 마틴 H1-1 USDJPY,H1: TP= 0.5

5를 100으로 나누면 0.5가 되기 때문에 이해가 되지 않습니다.

개체 파악 - 어떤 이유로 터미널은 다른 색상을 지원하지 않고 다른 기능에서 이미 사용 가능한 것을 사용합니다.

 
trader781 :
...

개체 파악 - 어떤 이유로 터미널은 다른 색상을 지원하지 않고 다른 기능에서 이미 사용 가능한 것을 사용합니다.

개체에서? 무의미한 말.
 
Artyom Trishkin :
개체에서? 무의미한 말.
Artyom, 위의 코드를 던졌습니다.