Multi Timeframe Indicators - page 862

 
rplust:
It works on mine. Here is Sinwave3 if you want to try this one.

mLaden, if you are going to do an MTF please use this one as it draws horizontal Levels on the main chart too. Can be switched on/off. Thanks!

sinewave3.mq4

Here is the multi time frame version : sinewave3_mtf.mq4

It also needs this one : cycleperiod.mq4 in order to work OK

Files:
 
mladen:
Here is the multi time frame version : sinewave3_mtf.mq4 It also needs this one : cycleperiod.mq4 in order to work OK

Thank you mLaden!

For those who, like me, would like the Indicator plot automatically the next higher TF to the current, insert the red highlighted code as shown and compile it again. When you set the TF to -1 (minus one) in the parameter window it will do the trick. Of course you can still use a fixed TF or current TF only. It's not really rocket science (I see mLaden laughing, I learned that from him). Merry Christmas!

int init() {

if (timeFrame == -1)

switch(Period())

{

case 1: timeFrame = 5 ; break;

case 5: timeFrame = 15 ; break;

case 15: timeFrame = 30 ; break;

case 30: timeFrame = 60 ; break;

case 60: timeFrame = 240 ; break;

case 240: timeFrame = 1440 ; break;

case 1440: timeFrame = 10080 ; break;

case 10080: timeFrame = 43200 ; break;

default : timeFrame = Period();

}

drawBegin = 8;

IndicatorBuffers(5);

timeFrame = MathMax(timeFrame,Period());

initBuffer(Sine, "Sine", DRAW_LINE);

or you can re-install the Indicator.

sinewave3_mtf.mq4

Files:
 

Thanks so much to All...

 
 
igrek:
PZ Day Trading Indicator http://www.youtube.com/watch?v=NBofz411nE8

This is what it shows:

Files:
eurusdh1.png  74 kb
 
rplust:
This is what it shows:

You have a correct one here : https://www.forex-tsd.com/forum/debates-discussions/116-something-interesting-please-post-here/page517#comment_814240

 
whisperer:
You have a correct one here : https://www.forex-tsd.com/forum/debates-discussions/116-something-interesting-please-post-here/page517#comment_814240

Yes, this one works. Thank you!

 

Mr M

Mr T

Can you make the levels in this indictor so it can read 25, 50, 75 ( 0 - 100 )

Thanks

Greetings

 

Hi Mladen.Please Mtf indicator and alert.

Files:
 
DominoWoo:
Hi Mladen.Please Mtf indicator and alert.

Would need the source to change that indicator (I hate making 2 file multi time frame indicators)

Reason: