Request Suport & Resistance indicator

 

Any ideea where i can find Suport and Resistance indicator to works for evry timeframe?

Thanks

 
 
newdigital:
Should be here https://www.mql5.com/en/forum/177227

Hi ND,

Could you please post this indicator.Tks.

It is only for elite group?

B.

 

from my collection

And maybe you want to try these..

 

Support...

Thanks guys.

ElCid tried to sell EA (.ex4) based on Support Resistance by Kalenzo/Klefas.

ND, this EA is available on this forum?

Tks.

B.

 
Bongo:
Thanks guys.

ElCid tried to sell EA (.ex4) based on Support Resistance by Kalenzo/Klefas.

ND, this EA is available on this forum?

Tks.

B.

I don't know.

Go to one of his public thread and ask.

 

Hi,

I'm trying to make EA based on Resistance and Support.

If price brakes resistance and it is 5 pips over ... buy, etc.

My EA is only buying.

I'm using these codes:

double Resistance=iCustom(NULL, 0, "Support_Resistance",0,0,0);

double Support =iCustom(NULL, 0, "Support_Resistance",0,1,0);

//------------------------------------------------------------+

...

if (openprice_curr < Support-Distance*point)

{

OrderSend(Symbol(),OP_SELL,...

}

if (openprice_curr >= Resistance+ Distance*point)

{

OrderSend(Symbol(),OP_BUY,...

}

Thanks

Bongo

Reason: