Elite indicators :) - page 1245

 
simon_json:

Thanks mladen! My coder response:

Okay, here is the code snippet used for indi's access:


         Up=iCustom(_Symbol,PERIOD_CURRENT,"::Indicators\\Averages ribbon 2_7.ex4"
                    ,0    //Timeframe
                    ,0    //Custom TF
                    ,FastMaPeriod
                    ,MODE_SMA    //MA Method
                    ,FastMAPrice
                    ,DoubleSmoothedFastAverage
                    ,AdaptiveFastAverage
                    ,SlowMAPeriod
                    ,MODE_SMA    //Slow MA Method
                    ,SlowMAPrice
                    ,DoubleSmoothedSlowAverage
                    ,AdaptiveSlowAverage
                    ,Filter
                    ,0    //Display type
                    ,3    //Lines Width
                    ,1    //BarWidth
                    ,false//Turns alert on
                    ,false//Alerts on current
                    ,false//Alert should pop up
                    ,false//Alert plays a sound
                    ,false//push
                    ,false//mail
                    ,159  //Arrow code up
                    ,159  //Arrow code down
                    ,0.5  //Gap arrow up
                    ,0.5  //Gap arrow down
                    ,true //Arrow on first bars
                    ,0    //Average shift
                    ,0    //Interpolation
                    ,4    //Indicator value 5
                    ,1    //Shift
                    );


Thanks in advise!

Sorry

"Wrapped" indicator usage (as a resource) is not enabled (since that was one of the ways some of the scammers were renaming stuff - nothing personal, but it took so broad a usage for that, that I had to prevent it)

 
mladen:

Sorry

"Wrapped" indicator usage (as a resource) is not enabled (since that was one of the ways some of the scammers were renaming stuff - nothing personal, but it took so broad a usage for that, that I had to prevent it)

Thanks for reply!
Ok, but is it possible to use the indicator for an EA? And if, how to do so?
I only want the EA to buy when the indicator changes color. 
Please help, my coder waits for me.
All the best!
 
mladen:

Sorry

"Wrapped" indicator usage (as a resource) is not enabled (since that was one of the ways some of the scammers were renaming stuff - nothing personal, but it took so broad a usage for that, that I had to prevent it)

Hi again,

My coder just wrote: 
"I just tried to use it without "wrapping" (no resource, just using buffers) and it's exactly the same error."

Is there some other method? 

All the best!
Simon 

 
simon_json:
Thanks for reply!
Ok, but is it possible to use the indicator for an EA? And if, how to do so?
I only want the EA to buy when the indicator changes color. 
Please help, my coder waits for me.
All the best!

Of course that you can

Use it as a standalone indicator (the usage is, except for the name of the indicator, exactly the same as regular iCustom() call - no difference at all)

I tested it like this :

//------------------------------------------------------------------
//
//------------------------------------------------------------------
#property indicator_chart_window
#property indicator_buffers 0
//------------------------------------------------------------------
//
//------------------------------------------------------------------
int init() { return(0); }
int start()
{
   //
   //
   //  if trend variable is  1, trend is up
   //  if trend variable is -1, trend is down
   //  buffer to use == 6
   //
   //
   
   double trend=iCustom(NULL,0,"Averages ribbon 2_6",0,0,6,0);
   Comment(trend);
      return(0);
}

And all is just fine (as it should be)

You have an explanation why I used buffer 6 (the rest of the parameters your coder can add as per need

 
mladen:

You mean this one (just the single value of course) : https://www.mql5.com/en/forum/178615/page6

It seems a good candidate :)

Right this I mean.
 
krelian99:
Right this I mean.
OK - extending the "averages" even more :)
 
krelian99:
Right this I mean.

Averages with zero lag tema (including the double smoothed, adaptive and double smoothed adaptive versions of it)


 
mladen:

Averages with zero lag tema (including the double smoothed, adaptive and double smoothed adaptive versions of it)


How many averages now? 35?
 
nbtrading:
How many averages now? 35?

Make it 36 (zero lag dema added too)


 
forexblasters :

Mladen de Hola, ¿Es Posible: Añadir función f de la divergencia (Véase La Marca de Oro) en cinta el MACD Promedios + Líneas + indicador de alerta + flechas? Gracias de antemano, Forexblasters.



Dónde está this indicator please
Reason: