Disliked{quote} The indicator do not have input variables I could use to change the time frame I want to be able to input the TF as in the marked and available in earlier indicator {image}but no similar input in the indicator I want modified {image}4543866Ignored
Only it uses a slightly different calculation:
Inserted Code
case 1 : TimeFrame=PERIOD_M1; break; case 5 : TimeFrame=PERIOD_M5; break; case 15 : TimeFrame=PERIOD_M15; break; case 30 : TimeFrame=PERIOD_M30; break; case 60 : TimeFrame=PERIOD_H1; break; case 240 : TimeFrame=PERIOD_H4; break; case 1440 : TimeFrame=PERIOD_D1; break; case 7200 : TimeFrame=PERIOD_W1; break; case 28800: TimeFrame=PERIOD_MN1; break;
For Weekly it uses 7200.
For Monthy it uses 28800.
So, it works when you input those parameters.
The standard for MT4 is:
But this indicator will not work for 1080 and 43200 - it will just plot the current Tf HL channel.
The Pivot.mq4 plots pivot points, not HL channel.
If you want any timeframe Pivot Points, here it is:
Attached File(s)
Here is another one, with labels:
Attached File(s)
And, of course, we can modify this one to work properly, too:
Attached File(s)
.ex4/.ex5 files can't be fixed or modified / I'm not a coder!
1