Индикаторы: Trio Color

 

Trio Color:

Сигнальный Индикатор

Author: SanAlex

 

В Эксперт можно добавить его настройки 

//--- create handle of the indicator
   handle=iCustom(Symbol(),Period(),"Trio Color","",InpScaleFactor,InpMaPeriod,InpVolatilityPeriod,
                  InpCoeffcop,InpAppliedPrice,"",Inpyna,Inpdoy,Inptrei,Inppatry,Inpcinc,Inpshase,Inpshapt,InpFiltryC,
                  InpFiltryM,InpFiltryP);
//--- if the handle is not created
   if(handle==INVALID_HANDLE)
     {
      //--- tell about the failure and output the error code
      PrintFormat("Failed to create handle of the indicator for the symbol %s/%s, error code %d",
                  Symbol(),
                  EnumToString(Period()),
                  GetLastError());
      //--- the indicator is stopped early
      return(INIT_FAILED);
     }
//---
 

Можно через этот - убрать лишнюю информацию

Line Trio Color  

-----------------------------------------------------------------------------------------------------------------------------------------------------------------------

Только с этим, немного не так просто .

В  Trio Color: нужно в коде изменить - на так 

//+------------------------------------------------------------------+
//| Indicator deinitialization function                              |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
  {
   /*
      for(int i=0; i<ArraySize(_name); i++)
        {
         ObjectDelete(0,_name[i]);
        };
   */
//--- removes all objects of the specified type using prefix in object names
  }
//+------------------------------------------------------------------+


Файлы:
Файлы:
 

вроде неплохие сигналы нашёл от этого индикатора - на 1минуте золото

//---
input group  "---- parameters ----"
input double InpScaleFactor              = 2.25;        // Scale factor
input int    InpMaPeriod                 = 3;           // Smooth Period
input int    InpVolatilityPeriod         = 70;          // Volatility Period
input double InpCoeffcop                 = 0.06349206;  // Coral Coefficient
input ENUM_APPLIED_PRICE InpAppliedPrice = PRICE_CLOSE; // Applied price Coral
input group  "---- Signal ----"
input bool   Inpyna                      = false;       // 1 Volatility Signal
input bool   Inpdoy                      = true;        // 2 Coral Signal
input bool   Inptrei                     = false;       // 3 "Volatility < Coral" Signal
input bool   Inppatry                    = false;       // 4 "Coral < Volatility" Signal
input bool   Inpcinc                     = false;       // 5 Coral Signal Price
input bool   Inpshase                    = false;       // 6 Volatility Signal Price
input bool   Inpshapt                    = false;       // 7 Pivot Signal Price
input group  "---- Filter ----"
input bool   InpFiltryC                  = false;       // Filter Coral
input bool   InpFiltryM                  = false;       // Filter Volatility
input bool   InpFiltryP                  = true;        // Filter Pivot
//+------------------------------------------------------------------+

больше и больше позиций накапливается и как обычно слил - но сам сигнал, вроде должен быть не плохой.

uhfa  3

\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\

а так, при смене сигнала - закрывало позиции.

Снимок 00000ап

Причина обращения: