Elite indicators :) - page 61

 

Indicators?

Hello

Please, can you tell me where find information about Bobokus thread, and the indicators : ZUP_v79 ; MA Gann_HiLo_Activator, or Trend_Envellope or Laguerre_Filter envellope

Thanks a lot

Julio Bento

 
jjibl:
Hello

Please, can you tell me where find information about Bobokus thread, and the indicators : ZUP_v79 ; MA Gann_HiLo_Activator, or Trend_Envellope or Laguerre_Filter envellope

Thanks a lot

Julio Bento

Bobokus thread is here https://www.mql5.com/en/forum/178590 and here https://www.mql5.com/en/forum/177638

All ZUP indicator is on this post (including v79 as a link) https://www.mql5.com/en/forum/178120

TrendEnvelope (with sound alert) is on this post as the link to the post https://www.mql5.com/en/forum/176023

TrendEnvelopes_v3 (similar with Fibonacci Trader system) is on this post https://www.mql5.com/en/forum/174793/page24

Laguerre with many versions is on this post as the links https://www.mql5.com/en/forum/178673 and public thread is here https://www.mql5.com/en/forum/173022

-----------

Basicly, if you can not find something so you need just few threads:

Indicators and trading systems:

- forum links thread;

- elite section links thread.

EAs:

- forum EAs links thread.

I am suggesting to you (and to all elite members) to copy those 3 threads above to your computer to find everything after you will unsubscribe from elite section.

By the way, those 3 threads are updating almost daily.

If you missed some week or did not visit the forum for few days so this thread will help you.

 

Deleted message

 
kokas:
I will continue to defent my point of view... eheheeh I think this is a fantastic idea, but... in a new forum with one thread per indicator, so we can continue discussing that indicator in the same thread. If we post indicators all on the same thread, then it will be a mess... I think

I don't think that we have many indicators here in elite section.

 

New PPO

New PPO (aka MACD percent) based on the last MACD code

 

FXT3CCI with repainting

Hi.

Could somebody help me to fix my version of FXT3CCI? It is repainting and I need help to fix it problem.

I will appreciate it.

Files:
fxt3cci.gif  65 kb
 
cattus:
Hi.

Could somebody help me to fix my version of FXT3CCI? It is repainting and I need help to fix it problem.

I will appreciate it.

You could try the one posted from post 526 to 530 on current thread. IT has been done with the right T3 calculation.

 

T3 cci

Hi Linuxer.

Thanks for your comments. I am reviewing your version vs my version in order to find errors.

I have a question:

In your version you erase the line n = 1 + 0.5*(n - 1);

Original version:

//----

if(n < 1)

n = 1;

n = 1 + 0.5*(n - 1);

w1 = 2 / (n + 1);

w2 = 1 - w1;

//----

Your version:

//----

if(n < 1)

n = 1;

w1 = 2 / (n + 1);

w2 = 1 - w1;

//----

Why?

 

Hi again cattus,

Because it's the formula explained on TASC. See full explanation on post 525 current thread. mladen also discovered who included the mod.

 

T3

Linuxser:
Hi again cattus, Because it's the formula explained on TASC. See full explanation on post 525 current thread. mladen also discovered who included the mod.

Thanks, Linuxer.

I guess those posts will help me to correct my errors.

Regards.

Reason: