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
2 x MTF_MegaTrend_Bar_4TFNextM6
Hi,
can anyone from the indicator make two indicators?
1. Indicator: TF M1, M5, M15, M30
2. Indicator: TF H1, H4, D1, W1.
For each TF, a separate setting (M1 = periodM1 ..... W1 = periodW1) ?
Thank you!
MTF_MegaTrend_Bar_4TFNextM9.mq4:
don't worry about UniqueNumber
Mladen's unik namba Generator will do it for ya (generates UniqueName)
MTF_MegaTrend_Bar_4TFNextM7.mq4 - slight changes in version 6
MTF_MegaTrend_Bar_4TFNextM8.mq4 (9.0 KB) timeframes autoswitch on/off
extern int Period_1 = PERIOD_H1;
extern int Period_2 = PERIOD_H4;
extern int Period_3 = PERIOD_D1;
extern int Period_4 = PERIOD_W1;
extern bool AutoDisplay = true;
extern int UniqueNum = 2285;
allows put 2 instances of same indi in one chart and have visible objects (labels) on both: set AutoDisplay = false and change (enter) different UniqueNumber
MTF_MegaTrend_Bar_4TFNextM8_autoOff.mq4 - same, only set according to prev. paragraph: AutoDisplay = false and UniqueNum = 2286;
HI.
Is it possible to make the Heiken_Ashi_Smoothed indicator into a MTF Heiken_Ashi_Smoothed?
I know there is the MTF_4TF_HAS_Bar2M.mq4 Which shows Bars.
But I would like to see the Heiken Ashi Smoothed on the chart like it is normally but I want to be able to put several different Time frames of the indicator----- MTF heiken ashi smoothed..
Thanks for any help on this.
Brucedid you ever get this MTF indicator.. im looking for one too. the smoothed version
i found it here https://www.mql5.com/en/forum/173574/page46
Maybe this helps
Regards
MTF_MegaTrend_Bar_4TFNextM9.mq4:
don't worry about UniqueNumber
Mladen's unik namba Generator will do it for ya (generates UniqueName)Hi fxbs,
your indicator is exactly what I was looking for!
Thanks for your quick help!
I have the following question:
I would like for each TF value for a specific period (megatrend).
Can I make it?
extern int periodM1 = 50;
extern int periodM5 = 20;
:
case 1: prd = Period_1; yy = i1; period = periodM1; break;
case 2: prd = Period_2; yy = i2; period = periodM5; break;
:
Is it correct?
Sorry for my bad english !
Regards
derumuro
well, play, try different things, see what heppens, improvise - whatever works 4 you
Thank You!
MTF_MegaTrend_Bar_4TFNextM7.mq4 - slight changes in version 6
MTF_MegaTrend_Bar_4TFNextM8.mq4 (9.0 KB) timeframes autoswitch on/off
extern int Period_1 = PERIOD_H1;
extern int Period_2 = PERIOD_H4;
extern int Period_3 = PERIOD_D1;
extern int Period_4 = PERIOD_W1;
extern bool AutoDisplay = true;
extern int UniqueNum = 2285;
allows put 2 instances of same indi in one chart and have visible objects (labels) on both: set AutoDisplay = false and change (enter) different UniqueNumber
MTF_MegaTrend_Bar_4TFNextM8_autoOff.mq4 - same, only set according to prev. paragraph: AutoDisplay = false and UniqueNum = 2286;mtf keltner with midline
MTF_Keltner_ATR_Bands.mq4
(basically ATR Cannel) - if set mult.factor (ATRMult) to 1 , we'll get Keltner Channel w/o central line (wich is SMA)
! MTF works only with Keltner_ATR_Bands.mq4 - exact file name !Is there a mtf Keltner with midline? That midline is great pullback S/R area to enter a trade.
TIA