Jump to content

Who can make a multi timeframe version with this indicator ?


Recommended Posts

Hello,

 

Who can make a MTF version of this indicator RSIOMA_v2HHLSX.mq4 ?

 

you can find the indicator here --> http://paf.im/HGFUo

 

Thank you

 

Thanks manu, does this indi re-paint? If not then it's a very good indicator. I tried it on the strategy tester but it does not work with the tester. Be great if someone could add a pop-up, sound alert, and email alert too.

 

P.S. This is to all of our II Brothers and Sisters. It seems that most posts with shares get hundreds if not thousands of views, and and only get a couple of thanks. It's human nature to download it, just to see if it has any value. Please give the sharers some motivation to contribute and help like it was before. Please hit the THANKS BUTTON. It won't cost you anything. It's true that some indi's shared here are not good

indi's, but it would still be nice to give some feedback about it, good or bad. Then the sharer would understand why he did not get any thanks and will not post such bad indi's, but only focus on the best that he can find or think has potential. If the unappreciative behavior keeps up. II won't be the same.

 

Please don't be offended by this message because this is not for everyone. Those whom download the shares here without showing appreciation know who you are. For everyone else, please disregard this little message. As you are what has make

our beautiful home here what it is.

Edited by newbie111
Link to comment
Share on other sites

MTF indicators don't work in realtime....they are repainter per definition

You can't rely on historical data because the way MT4 is working you e.g. will know the close of an H4 candle even if it's just one second "old"

if you don't want it to repaint your are lagging the period of the highest timeframe you are using

Link to comment
Share on other sites

  • 2 weeks later...

as it "run" on moving average, to get the "MTF effect" you can just multiply period by TFtoDisplay/CurrentTF, for example you want to see M15 RSIOMA_v2HHLSX using default setting while open M5 chart, then the setting will be.

 

*M5 default setting

RSIOMA = 14;

RSIOMA_MODE = 1;

RSIOMA_PRICE = 0;

Ma_RSIOMA = 21;

Ma_RSIOMA_MODE = 1;

 

* M15 on M5 chart setting

RSIOMA = 42; (14 x (15/5)

RSIOMA_MODE = 1;

RSIOMA_PRICE = 0;

Ma_RSIOMA = 63; (21 x (15/5)

Ma_RSIOMA_MODE = 1;

 

you can check it by attaching RSIOMA_v2HHLSX using both setting on M5 chart (2 RSIOMA_v2HHLSX on your chart), take line on crossing at *M15 on M5 chart setting then switch to M15 chart, observe RSIOMA_v2HHLSX using *M5 default setting, the line should be on the crossing line.

this kind of "MTF effect" has its own bennefit, it does not repaint for TFtoDisplay/CurrentTF bar, the only repaint bar is at current bar (call it repaint is incorect actually, because calculating is in process)

please correct me if I am wrong... :P

 

basicly RSIOMA is RSI applied on MA and Ma_RSIOMA is MA array of RSI applied on MA.

you can build RSIOMA_v2HHLSX (without histogram and arrow) using default MT4 indicator,

 

1. Modify Moving Averages (below custom indicator folder) to run on separate window.

//+------------------------------------------------------------------+
//|                                        Custom Moving Average.mq4 |
//|                      Copyright © 2004, MetaQuotes Software Corp. |
//|                                       http://www.metaquotes.net/ |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2004, MetaQuotes Software Corp."
#property link      "http://www.metaquotes.net/"

[color="#FF0000"]#property indicator_chart_window[/color]
#property indicator_buffers 1
#property indicator_color1 Red

to

//+------------------------------------------------------------------+
//|                                        Custom Moving Average.mq4 |
//|                      Copyright © 2004, MetaQuotes Software Corp. |
//|                                       http://www.metaquotes.net/ |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2004, MetaQuotes Software Corp."
#property link      "http://www.metaquotes.net/"

[color="#FF0000"]#property indicator_separate_window[/color]
#property indicator_buffers 1
#property indicator_color1 Red

compile then attach to chart, set period 14; EMA; maximum 100; minimum 0; color None;

then you'll see nothing ... =))

 

2. attach Relative Strength Index (below Indicator Folder) to MA indicator window (drag and release on MA indicator window. set period 14; apply price to first indicator's data; maximum 100 and minimum 0;

 

3. attach Moving Average (below Indicator Folder) to MA and Relative Strength Index window. set period 21; EMA; apply price to previous indicator's data;

 

if you have AllAverages indicator then do step 1, you'll have alot "raw" data to choose, you can do the same to CCI and Momentum.

Edited by temon
Link to comment
Share on other sites

as it "run" on moving average, to get the "MTF effect" you can just multiply period by TFtoDisplay/CurrentTF, for example you want to see M15 RSIOMA_v2HHLSX using default setting while open M5 chart, then the setting will be.

 

*M5 default setting

RSIOMA = 14;

RSIOMA_MODE = 1;

RSIOMA_PRICE = 0;

Ma_RSIOMA = 21;

Ma_RSIOMA_MODE = 1;

 

* M15 on M5 chart setting

RSIOMA = 42; (14 x (15/5)

RSIOMA_MODE = 1;

RSIOMA_PRICE = 0;

Ma_RSIOMA = 63; (21 x (15/5)

Ma_RSIOMA_MODE = 1;

 

you can check it by attaching RSIOMA_v2HHLSX using both setting on M5 chart (2 RSIOMA_v2HHLSX on your chart), take line on crossing at *M15 on M5 chart setting then switch to M15 chart, observe RSIOMA_v2HHLSX using *M5 default setting, the line should be on the crossing line.

this kind of "MTF effect" has its own bennefit, it does not repaint for TFtoDisplay/CurrentTF bar, the only repaint bar is at current bar (call it repaint is incorect actually, because calculating is in process)

please correct me if I am wrong... :P

 

basicly RSIOMA is RSI applied on MA and Ma_RSIOMA is MA array of RSI applied on MA.

you can build RSIOMA_v2HHLSX (without histogram and arrow) using default MT4 indicator,

 

1. Modify Moving Averages (below custom indicator folder) to run on separate window.

//+------------------------------------------------------------------+
//|                                        Custom Moving Average.mq4 |
//|                      Copyright © 2004, MetaQuotes Software Corp. |
//|                                       http://www.metaquotes.net/ |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2004, MetaQuotes Software Corp."
#property link      "http://www.metaquotes.net/"

[color="#FF0000"]#property indicator_chart_window[/color]
#property indicator_buffers 1
#property indicator_color1 Red

to

//+------------------------------------------------------------------+
//|                                        Custom Moving Average.mq4 |
//|                      Copyright © 2004, MetaQuotes Software Corp. |
//|                                       http://www.metaquotes.net/ |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2004, MetaQuotes Software Corp."
#property link      "http://www.metaquotes.net/"

[color="#FF0000"]#property indicator_separate_window[/color]
#property indicator_buffers 1
#property indicator_color1 Red

compile then attach to chart, set period 14; EMA; maximum 100; minimum 0; color None;

then you'll see nothing ... =))

 

2. attach Relative Strength Index (below Indicator Folder) to MA indicator window (drag and release on MA indicator window. set period 14; apply price to first indicator's data; maximum 100 and minimum 0;

 

3. attach Moving Average (below Indicator Folder) to MA and Relative Strength Index window. set period 21; EMA; apply price to previous indicator's data;

 

if you have AllAverages indicator then do step 1, you'll have alot "raw" data to choose, you can do the same to CCI and Momentum.

 

Thanks Temon

Really 'useful' info.

I am using same technique to get HTF effect in lower TF :)

 

Regards

Danny

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...