Multi Timeframe Indicators - page 170

 

help please

Hi can someone make the attached indi into a MTF indi?

It would be truly appreciated

Files:
 

Some MTF indicators

Some examples of the multi-times indicators: (For their work it is necessary to establish the base indicator and then MTF indicator)

1. Slope Direction_MTF - This indicator for the organization of " slope trade ". Replaces 3 screens. Base indicator slope_direction_line.mq4 MTF indicator slopedirection_mtf.mq4.

2. JMASlope_MTF - For the organization of scalp and swing trade. Base indicator jmaslope.mq4 MTF indicator jmaslope_mtf.mq4

To familiarize with other my works it is possible here My works

Good Luck

 

ToR

Thanks fxbs, how to change the color of ToR ?, because my background color of my chart is white.

serveruang

 
fxbs:
TOR: (Nittany)

small little indi - 4 one Q -Trending or Ranging?

(before they hook up more and more stuff on it)

In your ToR indicator display:

Arrows pointing up but text says decreasing.

Arrows pointing down but text says increasing.

I do not understand.

Please explain.

Thank you.

 

TOR: (Nittany)

small little indi - 4 one Q -Trending or Ranging?

(before they hook up more and more stuff on it)

p.s. nittany's thread -TOR indi:

https://www.mql5.com/en/forum/177237

Files:
tor_1.10.mq4  22 kb
tor_1.02.mq4  16 kb
tor_110.gif  17 kb
 
asystem2000:
Some examples of the multi-times indicators: (For their work it is necessary to establish the base indicator and then MTF indicator)

1. Slope Direction_MTF - This indicator for the organization of " slope trade ". Replaces 3 screens. Base indicator slope_direction_line.mq4 MTF indicator slopedirection_mtf.mq4.

2. JMASlope_MTF - For the organization of scalp and swing trade. Base indicator jmaslope.mq4 MTF indicator jmaslope_mtf.mq4

To familiarize with other my works it is possible here My works

Good Luck

Than you 4 sharing, Asystem!

 

ATR CountBack

Hi fxbs

Is this something like what you were after, the example shows the same 24 hour period of time for the last 4 days in comparison for the 1 hour ATR.

atr_countback.mq4

Files:
atr.gif  67 kb
 

yesss! thank you, CJA!

i kinda got obsessed with dem thing. Thanks a lot!

 

ATR_CountBack. mq4 - don't ask how to use it - i don't know yet - It's just raw idea, still being researched ...

 
ServerUang:
Thanks fxbs, how to change the color of ToR ?, because my background color of my chart is white. serveruang

you need to go inside and change object colors in the code:

if ((adx_m1 < ADX_trend_level) && (adx_m1 != 0)) { adx_color_m1 = LightSkyBlue; }

if ((adx_m1 >=ADX_trend_level) && (di_p_m1 > di_m_m1)) { adx_color_m1 = Lime; }

if ((adx_m1 >=ADX_trend_level) && (di_p_m1 < di_m_m1)) { adx_color_m1 = Red; }

ObjectSetText("ToR110-11","1 Hr:", 10, "Lucida Sans Regular", LightSteelBlue);

... etc.

...and ask Nittany to to make it as external input kinda

extern color adx_color_up = Green;

Reason: