Multi Timeframe Indicators - page 126

 

hey fxbs..i know that's how the indicator works, I was wondering if at all possible to have only the most recent dot change on ALL timeframes displayed rather than changing multiple dots when the stochs switch. as it is, does it affect backtesting since multiple dots are moving from green to red constantly?

thanks

PS. the link you have there takes me back to the most recent threads . where can I find that post?

 

no, that's fine

30 min (upperr row) - one dot (one candle)

1H (second row) - two dots (one 1H candle)

4 H - 8 dots

1d - 48 dots (one big bar)

how mtf work check

-post887.html

https://www.mql5.com/en/forum/173574/page60

+ page 48; post 479 +

 

i updated link

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

and try PJ's bars - it might work better for you

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

 

Solar_Wind_clean_X_mtf.mq4

analog of old SW - based on Mladens SWclean - fast, unrepainting, trasformator twisted, ruded (selfpopeld - usual: make sure file installed under correct name)

p.s. thanks to Mladen, i jus cut-off all "unnessessary" parts...

Files:
 

MTF MA Indicator Wanted

I would like to be able to place the 27 and 34 EMAS from the 15, 30, and 60 min TFs on one chart. Can anyone assist? Thank you.

 

a bit of explanation

SolarWind_ Cleen - full version with full Fisher transform;

SolarWind_ Cleen_X - "faster" version: lightened, not full Fisher (to run like in oldSW) but clean

and how it work:

Originally Posted by mladen

old sw :

1. calculates with the counter from 0 to limit

2. in that loop it "saves previous values" - last two lines of the code here (value1 and fish1)

3. uses those values in i+1 (previous bar) calculations

so it uses future values in past bar calculations

as every value depends 67% from the stored value, it has up to 67% of the future incorporated into it

that is why when forced to repaint, it looks so good

{ MaxH = High;

MinL = Low[Lowest(NULL,0,MODE_LOW,period,i)];

price = (High+Low)/2;

Value = 0.33*2*((price-MinL)/(MaxH-MinL)-0.5) + 0.67*Value1;

Value=MathMin(MathMax(Value,-0.999),0.999);

ExtBuffer0=0.5*MathLog((1+Value)/(1-Value))+0.5*Fish1;

Value1=Value;

Fish1=ExtBuffer0; [/PHP]

Originally Posted by fxbs :

- so we got 0.5 of buffer0, which uses 0.33... of value

and overall (with log)… :

with future known:

(redraw)

Value = 0.33*2*((price-MinL)/(MaxH-MinL)-0.5) + 0.67*Value1;

Value=MathMin(MathMax(Value,-0.999),0.999);

ExtBuffer0=0.5*MathLog((1+Value)/(1-Value))+0.5*Fish1;

with future unknown:

(before redraw)

[PHP]Value = 0.33*2*((price-MinL)/(MaxH-MinL)-0.5 +0) ;

Value=MathMin(MathMax(Value,-0.999),0.999);

ExtBuffer0=0.5*MathLog((1+Value)/(1-Value))+0;

oh, sht...

- check e-mail urgent!!!

(you got the idea...:-)

 

Hi fxbs,

Thank you for your explanation and modifications. However I ran into the same problem with this one. It took all my resource and making it impossible to run MT4 on my computer with 3/4 gb of ram..

Here is the indicator:

Thank you again in advance for your kind help.

Files:
 

MTF QQE wanted

Hi Good day to all,

i am looking for multi timeframe QQE, hope somebody can assist me.

Thanks.

 

mtf qqe in post 1227 (page 123)

________________

#MTF_ZerolagStochV3.mq4 needs indicator "Zerolagstochs_v3" to work

make sure it installed properly under exact name

 
fxbs:
mtf qqe in post 1227 (page 123)

________________

#MTF_ZerolagStochV3.mq4 needs indicator "Zerolagstochs_v3" to work

make sure it installed properly under exact name

Thanks fxbs,

Could you please guide me to the post of "Zerolagstochs_v3"? I did the serch and could not find this indicator. BTW don't there both install in the same indicator folder?

Anyhow thanks again for your kind help.

Reason: