Multi Timeframe Indicators - page 553

 
DMNIK:
Hi guys!

Please can someone combine these two metrics.

Traders Dynamic Index Visual Alerts_mtf insert the I-GentorLSMA&EMA_v[1]1.0.2.

Thanks in advance.

DMNIK

Not enough drawing buffers for that (already the TDI uses 7 drawing buffers)

 

Hi Mladen and Mrtools,

Sir,

Can you code this afl code in mtf in MTF version?

//Indicator - Volume Biased ADX

// By Karthik Marar - Experiments in Technical Analysis

// Public release for personal use only.

//Please do not commercialize this indicator in its original or modified form.

//

_SECTION_BEGIN("Volume Biased ADX");

SetBarsRequired(200,0);

GraphXSpace = 5;

Vlp = Param("Volume lookback period",30,20,300,10);

TP = Param("Time Periods",14,1,50);

Vrg = MA(V,Vlp);// average volume

Vf = V / Vrg;// Volume Factor

adplus = abs(High-Ref(High,-1))*Vf;

adminus = abs(Ref(Low,-1)-Low) *Vf;

PlusDM = IIf(High>Ref(High,-1) AND Low>=Ref(Low,-1), adplus,

IIf(High>Ref(High,-1) AND LowRef(Low,-1)-Low,adplus, 0));

DIPlus= 100 * MA(PlusDM,TP) / ATR (TP);

MinusDM= IIf(Low<Ref(Low,-1) AND High<=Ref(High,-1), adminus,

IIf(High>Ref(High,-1) AND Low<Ref(Low,-1)AND High-Ref(High,-1)<Ref(Low,-1)-Low,adminus, 0));

DIMinus = 100 * MA(MinusDM,TP) / ATR (TP);

Diff= abs(DIPlus - DIMinus);

DISum= DIPlus + DIMinus;

ADXRaw= 100 * Wilders(Diff/DISum, TP);

Plot (ADXRaw,"VADX",ParamColor( "ADX color", colorLightBlue ),1|styleThick);

Plot (DiPlus,"DI+",ParamColor( "+DI color", colorGreen ),1|styleThick);

Plot (DiMinus,"DI-",ParamColor( "-DI color", colorRed),1|styleThick);

_SECTION_END();

Files:
vadx.png  30 kb
 
mladen:
amiralias the one from this post : https://www.mql5.com/en/forum/174980/page30 is a multi time frame already

hi mladen

this indicator dont work as mtf and alwas shows current time situation

pls correct it or write mtf histogram in slope mode

thnx very much

 
amiralias:
hi mladen

this indicator dont work as mtf and alwas shows current time situation

pls correct it or write mtf histogram in slope mode

thnx very much

amiralias

As an example, this is when I set the time frame to 60 minutes (1 hour) on a 15 minute chart. So all is OK as far as multi time framing is concerned regarding that inidcator - no need to correct anything

Files:
lag_mtf.gif  35 kb
 

Dear,Mladen and mrtools !

Help the indicator draws heavily.

I can't understand his character. gives signals rarely and randomly.

Files:
 
DMNIK:
Dear,Mladen and mrtools !

Help the indicator draws heavily.

I can't understand his character. gives signals rarely and randomly.

DMNIK

Can not tell anything about it without the source

 

PS: just one addition - tested the "BinaryComodo" indicator in back test and it repaints. After comparing it to sidus indicator it turned out that it is in fact a renamed version of a repainting sidus indicator (sidus, sidus 2 and some other versions). Sorry

 
mladen:
PS: just one addition - tested the "BinaryComodo" indicator in back test and it repaints. After comparing it to sidus indicator it turned out that it is in fact a renamed version of a repainting sidus indicator (sidus, sidus 2 and some other versions). Sorry

Thank you!

You can do this indicator?

 
DMNIK:
Thank you! You can do this indicator?

DMNIK

Non-repainting version was posted on multiple places (one post here : https://www.mql5.com/en/forum/180648/page331 but do not expect the signals to be the same since they are not going to be.

For repainting version (that is the same as "BinaryComodo") search for sidus version 2

 

Mr mladen

Request Your Help to confirm if this is the latest version of this Indicator (Multipletime frame Shadow candle indicator)

On Applying this indicator,was unable to view the Higher TF shadow candle.

Thank You.

mladen:
Tsar,

Here you go. They are described in parameters now

Just to explain to others : the indicator supports non-standard time frames. So it can have the following "time frames" :

1 minute

2 minute

3 minute

4 minute

5 minute

6 minute

10 minute

12 minute

15 minute

20 minute

30 minute

1 hour

2 hour

3 hour

4 hour

6 hour

8 hour

12 hour

1 day

1 week

1 month

When entering you can enter time frames either as string (in which case use following ones (case does not matter : m1 and M1 are the same) : M1, M2, M3, M4, M5, M6, M10, M12, M15, M20, M30, H1, H2, H3, H4, H6, H8, H12, D1, W1, MN) or as numbers (in which case you use the following numbers : 1, 2, 3, 4, 5, 6, 10, 12, 15, 20, 30, 60, 120, 180, 240, 360, 480, 720, 1440, 10080, 43200).

Frankly, I prefer the "string way" (much,much easier to enter H12 for example than to know that it is 720 minutes). As an example a 12 hour candles for EURUSD
Reason: