Multi Timeframe Indicators - page 653

 

Updated trend detection index : trend_detection_index_mtf_nmc.mq4

Original was posted here : https://www.mql5.com/en/forum/173574/page397

 

also Stochastic RSI

study(title="Stochastic RSI", shorttitle="Stoch RSI")

source = close

lengthRSI = input(14, minval=1), lengthStoch = input(14, minval=1)

smoothK = input(3, minval=1), smoothD = input(3, minval=1)

rsi1 = rsi(source, lengthRSI)

k = sma(stoch(rsi1, rsi1, rsi1, lengthStoch), smoothK)

d = sma(k, smoothD)

plot(k, color=blue)

plot(d, color=orange)

h0 = hline(80)

h1 = hline(20)

fill(h0, h1, color=purple, transp=80)

 
Kelch Monteiro:
hi guys! how was your xmas? can you help me here with a mtf version from this indi?

trend_detection_index.mq4

thanks in advance!

Hi Kelch,

Made it mtf.

________________

Updated version posted here https://www.mql5.com/en/forum/173574

 
mikocairo55:
also Stochastic RSI

study(title="Stochastic RSI", shorttitle="Stoch RSI")

source = close

lengthRSI = input(14, minval=1), lengthStoch = input(14, minval=1)

smoothK = input(3, minval=1), smoothD = input(3, minval=1)

rsi1 = rsi(source, lengthRSI)

k = sma(stoch(rsi1, rsi1, rsi1, lengthStoch), smoothK)

d = sma(k, smoothD)

plot(k, color=blue)

plot(d, color=orange)

h0 = hline(80)

h1 = hline(20)

fill(h0, h1, color=purple, transp=80)

mikocairo55

A link to multi time frame wpr : Forex TSD - forex forum - Download WPRV2 mtf.mq4

A link to multi time frame stochastic rsi : Forex TSD - forex forum - Download StochRSI_mtf+alerts nmc.mq4

They both can work as "regular" ones too

 

Updated Coeffoline indicator : coeffoline_amp_alerts_-_mtf_nmc.mq4

Original was posted here : https://www.mql5.com/en/forum/173574/page397

 
mladen:
mobidik

I really would not like to be associated with yet another solar wind indicator (the trline) in any way.

As of "coeff of line" indicator : try out this version first (as far as I remeber this is a version that does not repaint)

Then this is the multi time frame version too

________________

Updated version posted here : https://www.mql5.com/en/forum/173574

 

Updated parabolic sar 2 support resistance version : parabolic_sar_sr_2_-_mtf_nmc.mq4

Original was posted here : https://www.mql5.com/en/forum/173574/page396

 
tito_xs:
hi mladen and/or mrtools here iam again asking for your kindness

I need to add the mtf option to this indi -->parabolic_sar_sr_2.mq4

happy holidays to all forex-tsd members

cheers tito,

tito

This is a multi time frame version of that indicator

Updated version posted here : https://www.mql5.com/en/forum/173574

 

Hi!

Is it possible to modify the following indicator to work in MTF mode?

I tried unsuccessfully.

It seems it has some coding problem as well. I think it recalculate all

bars and if you modify to resolve it, modification cause some problem

with drawing objects on chart. I appreciate any comments.

Best,

ma_profit.mq4

Files:
ma_profit.mq4  11 kb
 
-IXI-:
Hi!

Is it possible to modify the following indicator to work in MTF mode?

I tried unsuccessfully.

It seems it has some coding problem as well. I think it recalculate all

bars and if you modify to resolve it, modification cause some problem

with drawing objects on chart. I appreciate any comments.

Best,

ma_profit.mq4

IXI

This is just a version that correctly uses logical comparisons (to avoid some errors that could come from that) and some warning removed in order to make it cleaner

ma_profit_nmc.mq4.

As of making it multi time frame and not to use all the bars : it is all so tied up that I am not sure that it can be done. Will check some more but no promises

Files: