Multi Timeframe Indicators - page 125

 

It corrected.

fxbs:
CJA, that's what you feel when somebody messing with your staff?

P.S. Wings10, Mladen will kill you... (joke)

P.P.S. Bookkeeper ("All indicators for self-deseption") sad -"Guy who made notorious "Solar Wind" (from Fisher) should be prohibited to program ..."

Sorry.....They are all my misunderstanding

 

file is remove once

fxbs:
Wings, if this piece of code stays - please, take our names (& "forexTSD") out

live just Yura Prokofiev

(pls. edit attachements in posts 1254 and 1261)

we don't want our names on bullsht ind spreading around the wourld, right?

{ 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;

Correction after doing,it release

 

MTF in EAs

Hi,

I would like to ask some experience coder, if will some so nice, if is usefull to use MTF indicatoeres in EAs. I was trying some, but statements are much more bad with MTF, than with normal ones with higher TF setting. Please, if are here some coders witch know solve the problem (witch of MTF are useable, or from witch coders made,or how to implement tham in code by best way, and so....)and will be so nice, PLEASE LETT ALL of as to know. Many thanks for help.

Marko

 
fxbs:

show one chart -all set and another when it chenged and show (with lines or arrows) where u expect it to be

or

try multiple charts - screenshots or

in mt menu file/ save as picture/ active workspace

period -i mean time period H1, H4, etc

also try 1TF bar (set it to any TF) and compare

4expl https://www.mql5.com/en/forum (may be that's what you want)

btw our indis would not repaint any bars (paint current bar until its set (close) as any other indi, but not repaint)

hey fxbs, thanks again for trying to help me out. It is really difficult to try and capture this in screenshots as i do not see it happen very often. I will try though. I understand what you are saying about the mtf crosses but the indicator doesnt repaint the actually bars/candles. it repaints multiple dots on the actual indicator. say for example the 4h stoch is up...the indicator will show the dots as green. if the 4h then crosses down, multiple dots on the 4h will turn red instead of the most current dot (if the indicator is placed on a TF any lower than 4h).

thanks again.

 

MTF fractals- separate window

I have a problem making a MTF Fractal to work correctly.

Can someone please have a look why an extra row of arrows appear below.

I wanted the fractals to be on a separate window.

Thanks in advance

 
highway3000:
I have a problem making a MTF Fractal to work correctly.

Can someone please have a look why an extra row of arrows appear below.

I wanted the fractals to be on a separate window.

Thanks in advance

SetIndexEmptyValue

//---- indicator line

SetIndexBuffer(0,ExtMapBuffer1);

SetIndexStyle(0,DRAW_ARROW);

SetIndexArrow(0,119);

SetIndexBuffer(1,ExtMapBuffer2);

SetIndexStyle(1,DRAW_ARROW);

SetIndexArrow(1,119);

SetIndexEmptyValue(0,0.0);

SetIndexEmptyValue(1,0.0);

//---- name for DataWindow and indicator subwindow label
 
 

Wings, if this predicting past piece of code stays - please, take our names (& "forexTSD") out

live just Yura Prokofiev

(pls. edit attachements in posts 1254 and 1261)

we don't want our names on bullsht ind spreading around the wourld, right?

{ 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;
 

Thank you

fxbs:
SetIndexEmptyValue
//---- indicator line

SetIndexBuffer(0,ExtMapBuffer1);

SetIndexStyle(0,DRAW_ARROW);

SetIndexArrow(0,119);

SetIndexBuffer(1,ExtMapBuffer2);

SetIndexStyle(1,DRAW_ARROW);

SetIndexArrow(1,119);

SetIndexEmptyValue(0,0.0);

SetIndexEmptyValue(1,0.0);

//---- name for DataWindow and indicator subwindow label

Thank you Fxbs

It is working perfectly now.

Greatly appreciate your help

Wish you good trading

Highway

 

ok..i got some screens

ok fxbs....notice in the first picture that the daily dots are showing as green. When the market moves and the daily stochs reverse, look what happens in the second picture. all the dots turn from green to red. I can understand that I should be concerned with the most recent dots at the right edge of the frame, but I am wondering if this will mess up my backtesting.

thanks