One side gaussian ... - page 2

 

...

Welcome to TSD

Glad to see you here

regards

mladen

tinytjan:
Hi 2 all.

Good job! I was very pleased to see my idea being developed.

It was my first indicator and it was my first code written in MQL, so thanx for the code refactoring, i like it very much.

Hope, this idea helps you and will be useful.
 
mladen:
Welcome to TSD

Glad to see you here

regards

mladen

Thanx .

Well, i think one function is missing in the library:

double SmoothArray(int level, double& array[], int shift)

{

double sum = 0;

int limit = levels[level];

if (shift >= (Bars - limit)) return(array[shift]);

for (int i = 0; i < limit; i++)

sum += GaussianBuffer[level]*array[shift + i];

return (sum);

}
 

I have a guestion:

Mladen, may I post these indicators at MQL4.com ?

 

Of course, by all means

I can not think of a better person to post it there

regards

mladen

tinytjan:
I have a guestion: Mladen, may I post these indicators at MQL4.com ?
 
tinytjan:
Hi 2 all.

Good job! I was very pleased to see my idea being developed.

It was my first indicator and it was my first code written in MQL, so thanx for the code refactoring, i like it very much.

Hope, this idea helps you and will be useful.

Our pleasure, TheXpert - You did a wonerfull job

 

Indicators and library

In order for indicators to work OneSideGaussianLibrary has to be copied to metatrader/experts/libraries folder

 
fxbs:
Our pleasure, TheXpert - You did a wonerfull job

Thanx .

2 All:

Now I'm gonna make this algorithm built-in as one of MA methods.

All i need is comparision of different MA methods with GMA and with other custom MA algorithms.

Do you know, may be somebody has already done this?

If successful, i'll post the results of these researches at our forum.

And then there is a chance for standard MA to be improved.

Do you want it? And could you help me?

 
tinytjan:
Thanx .

2 All:

Now I'm gonna make this algorithm built-in as one of MA methods.

All i need is comparision of different MA methods with GMA and with other custom MA algorithms.

Do you know, may be somebody has already done this?

If successful, i'll post the results of these researches at our forum.

And then there is a chance for standard MA to be improved.

Do you want it? And could you help me?

Hello,

I would like to understand what this algorithm is about.

Anybody could please put together a detailed description?

Thanks

 
marcb:
Hello,

I would like to understand what this algorithm is about.

Anybody could please put together a detailed description?

Thanks

Mladen has already done below what you are asking for.

In addition to Mladen's description I can say, that smoothing is based on Gaussian function and 3-sigma rule for this function.

The aim is that bars lying not in chosen interval have no influence on current signal. Thus older bar has less influence on current signal.

P.S. Sorry for my english, it's not very good.

 

Anyone still using this idea further?

Reason: