[ARCHIVE] 포럼을 어지럽히 지 않도록 초보자 질문. 프로, 놓치지 마세요. 너 없이는 아무데도 - 3. - 페이지 470

 
Armagedon_kresh :
그리고 나는 11시까지 일하지 않았다!!! 죄송합니다 질문이 있습니다! 신뢰할 수 있는 DC가 없다고 들었습니다. 시장에 대한 액세스를 허용하지 않지만 상인이 일부 컴퓨터에서 거래하고 있음이 밝혀졌습니다!!! 무슨 사기야!!! "N****X" 커버를 열었는데 들어보셨나요??? 그것에 대한 리뷰는 무엇입니까??? 믿을만 한가요???

경고. DC는 이 포럼에서 논의되지 않습니다.
 
Vinin :

경고. DC는 이 포럼에서 논의되지 않습니다.
어떤 포럼에서 토론합니까?
 
yosuf :
어떤 포럼에서 토론합니까?

토론하고 싶은 DC 포럼에서
 

MTF_Stochastic 및 MTF_ADX의 두 가지 지표가 있습니다. 확률적 데이터는 일치하지만 ADC 데이터는 일치하지 않습니다. 무엇이 잘못되었는지 알려주세요. 감사해요

 #property indicator_separate_window
#property indicator_buffers 3
#property indicator_color1 Black
#property indicator_color2 SteelBlue
#property indicator_color3 Crimson

extern int TimeFrame= 60 ;
extern int period = 2 ;

double ExtMapBuffer1[];
double ExtMapBuffer2[];
double ExtMapBuffer3[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
  {
   SetIndexStyle ( 0 , DRAW_LINE );

   IndicatorDigits ( MarketInfo ( Symbol (),MODE_DIGITS)+ 1 );
   SetIndexBuffer ( 0 ,ExtMapBuffer1); 
   SetIndexBuffer ( 1 ,ExtMapBuffer2);
   SetIndexBuffer ( 2 ,ExtMapBuffer3);
   switch (TimeFrame)
  {
   case 1 : string TimeFrameStr= "Period_M1" ; break ;
   case 5 : TimeFrameStr= "Period_M5" ; break ;
   case 15 : TimeFrameStr= "Period_M15" ; break ;
   case 30 : TimeFrameStr= "Period_M30" ; break ;
   case 60 : TimeFrameStr= "Period_H1" ; break ;
   case 240 : TimeFrameStr= "Period_H4" ; break ;
   case 1440 : TimeFrameStr= "Period_D1" ; break ;
   case 10080 : TimeFrameStr= "Period_W1" ; break ;
   case 43200 : TimeFrameStr= "Period_MN1" ; break ;
   default : TimeFrameStr= "Current Timeframe" ;
  }
 IndicatorShortName ( "MTF_ADX(" +period+ ") (" +TimeFrameStr+ ")" );
 
   return ( 0 );
  }
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function                       |
//+------------------------------------------------------------------+
int deinit()
  {
//----
   
//----
   return ( 0 );
  }
//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int start()
  {
   datetime TimeArray[];
   int     i,limit,y= 0 ,counted_bars= IndicatorCounted ();
 
// Plot defined time frame on to current time frame
   ArrayCopySeries (TimeArray,MODE_TIME, Symbol (),TimeFrame); 
   
   limit= Bars -counted_bars;
   for (i= 0 ,y= 0 ;i<limit;i++)
   {
   if (Time[i]<TimeArray[y]) y++;

/***********************************************************   
   Add your main indicator loop below.  You can reference an existing
      indicator with its iName  or iCustom.
   Rule 1:  Add extern inputs above for all neccesary values   
   Rule 2:  Use 'TimeFrame' for the indicator time frame
   Rule 3:  Use 'y' for your indicator's shift value
 **********************************************************/   
   ExtMapBuffer1[i]= iADX ( NULL , 0 , period, PRICE_CLOSE , MODE_MAIN, y);
   ExtMapBuffer2[i]= iADX ( NULL , 0 , period, PRICE_CLOSE , MODE_PLUSDI, y);
   ExtMapBuffer3[i]= iADX ( NULL , 0 , period, PRICE_CLOSE , MODE_MINUSDI, y);
   }  
   return ( 0 );
  }
//+------------------------------------------------------------------+
 #property indicator_separate_window
#property indicator_buffers 2
#property indicator_color1 SteelBlue
#property indicator_color2 Crimson

extern int TimeFrame= 60 ;
extern int kperiod = 1 ;
extern int dperiod = 2 ;
extern int slowing = 1 ;
extern int method  = 0 ;

double ExtMapBuffer1[];
double ExtMapBuffer2[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
  {
   SetIndexStyle ( 0 , DRAW_LINE );

   IndicatorDigits ( MarketInfo ( Symbol (),MODE_DIGITS)+ 1 );
   SetIndexBuffer ( 0 ,ExtMapBuffer1); 
   SetIndexBuffer ( 1 ,ExtMapBuffer2);
   switch (TimeFrame)
  {
   case 1 : string TimeFrameStr= "Period_M1" ; break ;
   case 5 : TimeFrameStr= "Period_M5" ; break ;
   case 15 : TimeFrameStr= "Period_M15" ; break ;
   case 30 : TimeFrameStr= "Period_M30" ; break ;
   case 60 : TimeFrameStr= "Period_H1" ; break ;
   case 240 : TimeFrameStr= "Period_H4" ; break ;
   case 1440 : TimeFrameStr= "Period_D1" ; break ;
   case 10080 : TimeFrameStr= "Period_W1" ; break ;
   case 43200 : TimeFrameStr= "Period_MN1" ; break ;
   default : TimeFrameStr= "Current Timeframe" ;
  }
 IndicatorShortName ( "MTF_Stochastic(" +kperiod+ "," +dperiod+ "," +slowing+ ") (" +TimeFrameStr+ ")" );
 
   return ( 0 );
  }
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function                       |
//+------------------------------------------------------------------+
int deinit()
  {
//----
   
//----
   return ( 0 );
  }
//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int start()
  {
   datetime TimeArray[];
   int     i,limit,y= 0 ,counted_bars= IndicatorCounted ();
 
// Plot defined time frame on to current time frame
   ArrayCopySeries (TimeArray,MODE_TIME, Symbol (),TimeFrame); 
   
   limit= Bars -counted_bars;
   for (i= 0 ,y= 0 ;i<limit;i++)
   {
   if (Time[i]<TimeArray[y]) y++;

/***********************************************************   
   Add your main indicator loop below.  You can reference an existing
      indicator with its iName  or iCustom.
   Rule 1:  Add extern inputs above for all neccesary values   
   Rule 2:  Use 'TimeFrame' for the indicator time frame
   Rule 3:  Use 'y' for your indicator's shift value
 **********************************************************/   
 
   ExtMapBuffer1[i]= iStochastic ( NULL ,TimeFrame,kperiod,dperiod,slowing,method, 0 ,MODE_MAIN,y);
   ExtMapBuffer2[i]= iStochastic ( NULL ,TimeFrame,kperiod,dperiod,slowing,method, 0 ,MODE_SIGNAL,y);
   }  
   return ( 0 );
  }
//+------------------------------------------------------------------+
 
iADX(NULL, 0, 
 
Vinin :

경고. DC는 이 포럼에서 논의되지 않습니다.

죄송합니다!!! 포럼에서 오랫동안 무엇이 가능하고 무엇이 불가능한지 몰랐습니다!
 

신호가 마지막 날이 아니라 마지막 4개의 캔들 중 가장 낮은 지점에 표시되도록 코드에서 변경해야 할 사항을 알려주실 수 있습니까? 스크린샷과 코드가 첨부되었습니다.

 #property indicator_chart_window
#property indicator_buffers 5
#property indicator_color1 Crimson
#property indicator_color2 Crimson
#property indicator_color3 Crimson
#property indicator_color4 Crimson
#property indicator_color5 Crimson

extern int     Target1    = 20 ;
extern int     Target2    = 30 ;
extern int     TakeProfit = 40 ;
extern int     StopLoss   = 40 ;
extern bool    IsTime     = false;
extern string TimeStart  = "05:00" ;
extern string TimeEnd    = "17:00" ;

double SellBuffer[];
double SellTP1Buffer[];
double SellTP2Buffer[];
double SellTP3Buffer[];
double SellSLBuffer[];

int init()
{
     SetIndexBuffer ( 0 , SellBuffer);
     SetIndexBuffer ( 1 , SellTP1Buffer);
     SetIndexBuffer ( 2 , SellTP2Buffer);
     SetIndexBuffer ( 3 , SellTP3Buffer);
     SetIndexBuffer ( 4 , SellSLBuffer);
     SetIndexStyle ( 0 , DRAW_ARROW );
     SetIndexStyle ( 1 , DRAW_ARROW );
     SetIndexStyle ( 2 , DRAW_ARROW );
     SetIndexStyle ( 3 , DRAW_ARROW );
     SetIndexStyle ( 4 , DRAW_ARROW );
     SetIndexArrow ( 0 , 159 );
     SetIndexArrow ( 1 , 178 );
     SetIndexArrow ( 2 , 178 );
     SetIndexArrow ( 3 , 178 );
     SetIndexArrow ( 4 , 251 );
     SetIndexLabel ( 0 , "Sell" );
     SetIndexLabel ( 1 , "Sell Target1" );
     SetIndexLabel ( 2 , "Sell Target2" );
     SetIndexLabel ( 3 , "Sell TP" );
     SetIndexLabel ( 4 , "Sell SL" );
     return ( 0 );
}

int start()
{
     int limit;
     int counted_bars = IndicatorCounted ();
     if (counted_bars > 0 )
        counted_bars--;
    limit = Bars - counted_bars;
     for ( int i = 0 ; i < limit; i++)
    {
         double main1= iCustom ( NULL , 0 , "MTF_Stochastic" , 240 , 1 , 2 , 1 , 0 , 0 ,i+ 1 );
         double sig1= iCustom ( NULL , 0 , "MTF_Stochastic" , 240 , 1 , 2 , 1 , 0 , 1 ,i+ 1 );
         double main2= iCustom ( NULL , 0 , "MTF_Stochastic" , 240 , 1 , 2 , 1 , 0 , 0 ,i+ 2 );
         double sig2= iCustom ( NULL , 0 , "MTF_Stochastic" , 240 , 1 , 2 , 1 , 0 , 1 ,i+ 2 );
         double main3= iCustom ( NULL , 0 , "MTF_Stochastic" , 240 , 1 , 2 , 1 , 0 , 0 ,i+ 3 );
         double sig3= iCustom ( NULL , 0 , "MTF_Stochastic" , 240 , 1 , 2 , 1 , 0 , 1 ,i+ 3 );
         double main4= iCustom ( NULL , 0 , "MTF_Stochastic" , 240 , 1 , 2 , 1 , 0 , 0 ,i+ 4 );
         double sig4= iCustom ( NULL , 0 , "MTF_Stochastic" , 240 , 1 , 2 , 1 , 0 , 1 ,i+ 4 );
         double main5= iCustom ( NULL , 0 , "MTF_Stochastic" , 240 , 1 , 2 , 1 , 0 , 0 ,i+ 5 );
         double sig5= iCustom ( NULL , 0 , "MTF_Stochastic" , 240 , 1 , 2 , 1 , 0 , 1 ,i+ 5 );
         string    str = TimeDay (Time[i + 1 ]) + "." + TimeMonth (Time[i + 1 ]) + "." + TimeYear (Time[i + 1 ]) + " " ;
         datetime t1  = StrToTime (str + TimeStart + ":00" );
         datetime t2  = StrToTime (str + TimeEnd + ":00" );
         if (!IsTime || (IsTime && Time[i + 1 ] >= t1 && Time[i + 1 ] < t2))
        
        {
             if (main1 == main2 && sig1 == sig2 && 
                main2 == main3 && sig2 == sig3 &&
                main3 == main4 && sig3 == sig4 &&
                main1 < sig1 && main2 < sig2 && main3 < sig3 && main4 < sig4 &&
                main5 > sig5)
            {
                SellBuffer[i + 1 ]    = Low[i + 1 ] - 1 * Point ;
                SellTP1Buffer[i + 1 ] = Low[i + 1 ] - (Target1 + 1 ) * Point ;
                SellTP2Buffer[i + 1 ] = Low[i + 1 ] - (Target2 + 1 ) * Point ;
                SellTP3Buffer[i + 1 ] = Low[i + 1 ] - (TakeProfit + 1 ) * Point ;
                SellSLBuffer[i + 1 ]  = Low[i + 1 ] + (StopLoss - 1 ) * Point ;
            }
        
        
        }
    }
     return ( 0 );
}
 
Armagedon_kresh :
그리고 나는 11시까지 일하지 않았다!!! 죄송합니다 질문이 있습니다! 신뢰할 수 있는 DC가 없다고 들었습니다. 시장에 대한 액세스 권한을 부여하지 않지만 상인이 일부 컴퓨터에서 거래하고 있음이 밝혀졌습니다!!! 어떻게 사기야!!! 엔씨엑스 커버 열었는데 들어보셨나요??? 그것에 대한 리뷰는 무엇입니까??? 믿을만 한가요???

단일 DC가 은행 간 돈을 인출하지 않습니다.
 
단일 DC가 은행 간 시장으로 보내지 않습니다. 신뢰할 수 있는 DC가 없습니다(이는 규정에서 명확하게 알 수 있음) - 사소한 일을 속이지 않는 DC가 있습니다.
 

좋은 저녁이에요! 모두 새해 복 많이 받으세요!! 저는 소위 FXstart 플랫폼에 계정이 있으며 숨겨진 형태로 자동으로 시작됩니다. 더 많은 플랫폼, 가급적이면 동일한 DC를 다운로드하고 데모 계정을 열고 싶습니다. 한 대의 컴퓨터에서 정상적으로 공존할 수 있을까요? 로봇 및 설정이 포함된 이미 존재하는 제로화 다른 플랫폼을 다운로드하려고 하면 발생하지 않겠습니까!

또한 Eurodollar, Pounddollar 및 Audidollar 쌍에 같은 로봇을 던졌습니다. 테스트의 로봇은 매우 훌륭하게 행동했습니다 !!! 실생활에서 이것은 완전히 말도 안되는 일입니다. 제비는 예기치 않게 증가하고 주문은 하나씩 이루어집니다. 이것이 유로달러에 대해 보류 중이라고 가정해 보겠습니다. 그러나 엄격하게 하나는 있어야 합니다. 가격 이상의 거리는 20pp 또는 30 또는 아무거나 설정해야하며 하나의 설정으로 20뿐만 아니라 40, 60, 100pp도 설정해야합니다!! 그 결과 2200년부터 1836년까지 3일 만에 예금이 줄어들었다!! 잘 내린 것 같아요, 한순간에 900달러를 떼였어요!

그리고 얼마나 많이, !! 일반적으로 저는 이 공포를 껐습니다.. 그런 로트가 40개 이상 거래가 있습니다. 이것은 다른 통화 쌍에 던진 로봇의 변수가 서로 상호 작용한다는 사실 때문일까요????