
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
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.mq4Here is the multi time frame version : sinewave3_mtf.mq4
It also needs this one : cycleperiod.mq4 in order to work OK
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
Thanks so much to All...
PZ Day Trading Indicator
http://www.youtube.com/watch?v=NBofz411nE8
PZ Day Trading Indicator http://www.youtube.com/watch?v=NBofz411nE8
This is what it shows:
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
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.
Hi Mladen.Please Mtf indicator and alert.
Would need the source to change that indicator (I hate making 2 file multi time frame indicators)