Elite indicators :) - page 698

 
ValeoFX:
Hello Mladen,

I see you have been busier than ever before and Metaquotes are doing their very best to rattle you. Great that you still carry on regardless, the dumb idiots.

Could you please take a moment out of your day and tell me how I can increase the values on the Digital filter you built. Reason being that it is an SMA and sometimes just too quick for just one candle before it continues in the original direction.

I run it now on 2/0 + 2/1 and still needs a little refinement.

Attached is such a picture for your kind perusal and comments.

Thanks in advance.

ValeoFX

Those digital filters are with fixed coefficients and fixed calculation lengths. There are some versions that can generate digital filters using a dll but they require a lot of experimenting. See this thread : https://www.mql5.com/en/forum/172930 among others as an example

 

Thanks Mladen. Appreciate your time.

Continued success to you.

 

Step ma of momentum : stepma_of_momentum.mq4

Again, some parameters experimenting is needed but is seems that it can hep in overall momentum of the price estimation. Example from bellow is using default parameters

 
mladen:
Step ma of momentum : stepma_of_momentum.mq4 Again, some parameters experimenting is needed but is seems that it can hep in overall momentum of the price estimation. Example from bellow is using default parameters

mladen,

can we have it as multi time frame + alerts version?

Thank you

 
checkin:
mladen,

can we have it as multi time frame + alerts version?

Thank you

Checkin, added the mtf, alerts were already there..

 
mrtools:
Checkin, added the mtf, alerts were already there..

Thank you, mrtools

 

A Golden CCFp

mrtools:
CCFp mtf 1.02 originally from here https://www.mql5.com/en/forum/general made new mt4 compatible.

Hi Mr Tools, Can you add the currency (XAU) to this indicator.

So it can be used to trade Gold as well?

ish

Files:
 
ismael360:
Hi Mr Tools, Can you add the currency (XAU) to this indicator.

So it can be used to trade Gold as well?

ish

Hi Ish,

CCFp is using all 8 of the available mt4 buffers also it compares the currencies to each other to make its decision, not sure what to compare gold to.

 

Could we replace one of the Currencies.

Say maybe replace chf with XAU.

I woukd like to compare Xau to Usd.

Compare Xau to Eur.

There are many brokers that provide these type of pairs too trade.

Brokers like Pepperstone.

So say if I can if I can see how Xau Compares to Usd.

And see how Xau compares to Eur.

And then see how the Eur compare to the Usd.

Wouldn't it be possible by doing this I can

maybe determine if the Xau is stronger then both the eur and usd..

And if the Usd is weaker than both the Xau and Eur.

Then maybe I would look to see if there is a possible buy on Xua/usd.

Or I can do one better.

Compare Xua to all the other currencies.

And when Xau is the strongest and Usd is the weakest then maybe look for a possble buy on Xau/Usd.

So would it be possible to replace Chf with Xau?

Ish

 
ismael360:
Could we replace one of the Currencies.

Say maybe replace chf with XAU.

I woukd like to compare Xau to Usd.

Compare Xau to Eur.

There are many brokers that provide these type of pairs too trade.

Brokers like Pepperstone.

So say if I can if I can see how Xau Compares to Usd.

And see how Xau compares to Eur.

And then see how the Eur compare to the Usd.

Wouldn't it be possible by doing this I can

maybe determine if the Xau is stronger then both the eur and usd..

And if the Usd is weaker than both the Xau and Eur.

Then maybe I would look to see if there is a possible buy on Xua/usd.

Or I can do one better.

Compare Xua to all the other currencies.

And when Xau is the strongest and Usd is the weakest then maybe look for a possble buy on Xau/Usd.

So would it be possible to replace Chf with Xau?

Ish

Ish

If you take a look at the part that calculates one single value (in this case it is usd value) :

if(EUR) arrUSD += EURUSD_Slow / EURUSD_Fast - 1;

if(GBP) arrUSD += GBPUSD_Slow / GBPUSD_Fast - 1;

if(AUD) arrUSD += AUDUSD_Slow / AUDUSD_Fast - 1;

if(NZD) arrUSD += NZDUSD_Slow / NZDUSD_Fast - 1;

if(CHF) arrUSD += USDCHF_Fast / USDCHF_Slow - 1;

if(CAD) arrUSD += USDCAD_Fast / USDCAD_Slow - 1;

if(JPY) arrUSD += USDJPY_Fast / USDJPY_Slow - 1;

you will notice that the calculation is not based on one single value that could than be compared to another. For cases you need, the only solution is if broker has already the price of gold in each currency you are interested in - or to recalculate the $ price of gold to the target currency (for example the price of gold in euros would be XAU / EURUSD or XAU * USDJPY for price in Yen)

Reason: