Page 299 of 2042

Re: MT4 Indicator requests and ideas

Posted: Fri Feb 23, 2018 6:27 am
by John-Wick
Hello Mr Tools

I have question how would you resize a Dashboard to screen monitor resolution 1920 x 1080.

Re: MT4 Indicator requests and ideas

Posted: Fri Feb 23, 2018 7:51 pm
by mrtools
Holmes27 wrote: Fri Feb 23, 2018 12:59 am Hello Mladen and Team

Could the attached Mladen's Holt Double Exponential Smoothing Trend MTF indicator (in screenshot 1) please be made into a four colour version, like the MACD OSMA (in screenshot 2)?

I would really appreciate it if you would please help.

With thanks

Holmes27
Made it into a 4 color version.

Re: MT4 Indicator requests and ideas

Posted: Fri Feb 23, 2018 8:31 pm
by Holmes27
mrtools wrote: Fri Feb 23, 2018 7:51 pm

Made it into a 4 color version.
Thank you so much for helping mrtools; it works perfectly, I'm very much obliged.

Holmes27

Re: MT4 Indicator requests and ideas

Posted: Fri Feb 23, 2018 8:45 pm
by ashetty033
Mrtools Sir,

Could you please create an indicator for the following condition :
Custom Range Breakout
Selects the no. of bars given as input..
Calculates high and low(range) of the selected no. of bars and plots it for the selected period..

Here is the code in Amibroker:

Code: Select all

_SECTION_BEGIN(" CRB ");
nd=Hour() != Ref(Hour(), -1);
x = 5;
crbh = ValueWhen(nd,Ref(HHV(H,x),-1));
crbl = ValueWhen(nd,Ref(LLV(L,x),-1));
Plot(crbh,"",colorBlack,stylenoreScale|styleNoLabel);
Plot(crbL,"",colorBlack,stylenoreScale|styleNoLabel);
PlotOHLC(crbl,crbh,crbl,crbl,"",ParamColor("CRB col",colorPaleBlue),stylenoreScale|styleNoLabel|styleCloud,0,0,0,-6);
_SECTION_END();

Re: MT4 Indicator requests and ideas

Posted: Fri Feb 23, 2018 9:49 pm
by moey_dw
ashetty033 wrote: Fri Feb 23, 2018 8:45 pm Mrtools Sir,

Could you please create an indicator for the following condition :
sorry for interupt but i love ur signature sir :thumbup:

Re: MT4 Indicator requests and ideas

Posted: Fri Feb 23, 2018 11:34 pm
by jolugarpe
Yuvrajjj wrote: Thu Feb 01, 2018 3:23 am

precisely what I was lookin, thanks buddy! :)

lemme illustrate how to to read these modified range bars, volume on bars C & D are high with slightly less on bar D but there's negligible downward progress on bar D as compared to bar C. it is evident on Pacois' modified indicator (bottom window). This implies there was heavy buying on bar D.
Pacois, can you give the new range indicator. It´s very interesant for me. Thanks

Re: MT4 Indicator requests and ideas

Posted: Sat Feb 24, 2018 12:25 am
by sal
Hai Tools,
If you have some spare time, kindly made a new code/indicator based on the rules as shown in snap.
This is purely as per price action bar conditions only.

Re: MT4 Indicator requests and ideas

Posted: Sat Feb 24, 2018 2:46 am
by sal
hi Mr.Tools
an interesting indicator ! but is commerical .. is the smiliar available in our forum... :)
eatures:
>>>>>>>
the signals are given on "Pin Bars", which indicate a trend reversal
with the help of the filters, only the best "Pin Bars" are selected for the signals
does not redraw on closed bars
optimum operation algorithm, therefore the terminal does not "freeze"

Sell signals only appear above the МА ± ATR×Coeff channel, and the buy signals occur only below the МА ± ATR×Coeff channel


Input Parameters:

Filter 1: Maximum of Bars - signal "Pin Bar', must be the extremum for the specified amount of bars
Filter 2: MA Period - МА period for the channel calculation
Filter 2: ATR Period - the Average True Range indicator period for the channel calculation
Filter 2: ATR Coeff - ATR value multiplier for the channel width correction

Re: MT4 Indicator requests and ideas

Posted: Sat Feb 24, 2018 4:05 am
by merka
Currency Index

Hello guys
Does anybody have a currency index indicator where you can 1 currency against all others.
I mean something

Cheers

Re: MT4 Indicator requests and ideas

Posted: Sat Feb 24, 2018 5:23 am
by mrtools
sal wrote: Sat Feb 24, 2018 2:46 am hi Mr.Tools
an interesting indicator ! but is commerical .. is the smiliar available in our forum... :)
eatures:
>>>>>>>
the signals are given on "Pin Bars", which indicate a trend reversal
with the help of the filters, only the best "Pin Bars" are selected for the signals
does not redraw on closed bars
optimum operation algorithm, therefore the terminal does not "freeze"

Sell signals only appear above the МА ± ATR×Coeff channel, and the buy signals occur only below the МА ± ATR×Coeff channel


Input Parameters:

Filter 1: Maximum of Bars - signal "Pin Bar', must be the extremum for the specified amount of bars
Filter 2: MA Period - МА period for the channel calculation
Filter 2: ATR Period - the Average True Range indicator period for the channel calculation
Filter 2: ATR Coeff - ATR value multiplier for the channel width correction
Would need to know what other filters they use for the pin bars.