Page 35 of 2041

Re: MT4 Indicator requests and ideas

Posted: Tue Mar 21, 2017 11:22 am
by pacois
Billy Kay wrote:
Hi Pacois,

Appreciate the share. Could you briefly explain what "RangeKup, RangeK2 and RangeKTot " means. I have tried google over the weekend, but cannot find an explanation.

Kind regards
 

Hi, RangeK: Difference choice between close and bandwidth Upper, Middle, Lower, the Keltner channel.Rangek2 trend of a 1 bar band Low, the Keltner channel.RangekTotal: Trend of a 10 band bar Upper, Middle, Lower, the Keltner channel

Re: MT4 Indicator requests and ideas

Posted: Tue Mar 21, 2017 1:13 pm
by TRADERSM
mladen wrote:
You mean I should look at the picture, and, from the picture I should guess what math is used, and then make it?
Did you check this : https://en.wikipedia.org/wiki/Smart_money_index
mr.mladen its possible to create like this ??? thankyou

Re: MT4 Indicator requests and ideas

Posted: Tue Mar 21, 2017 8:33 pm
by gelsas
Is it possible to make this indicator non repainting ?

kind regards,
gelsas

Re: MT4 Indicator requests and ideas

Posted: Tue Mar 21, 2017 8:47 pm
by mrtools
gelsas wrote:Is it possible to make this indicator non repainting ?

kind regards,
gelsas
Gelsas, that is a version of Roy Kelly cycle identifier, do not think there is a way to make it not repaint and have the same signals.

Re: MT4 Indicator requests and ideas

Posted: Tue Mar 21, 2017 9:00 pm
by braciola719
Lo venire Vedete? '

Re: MT4 Indicator requests and ideas

Posted: Tue Mar 21, 2017 10:25 pm
by baraozemo
Hi,

Mt5 doesn't have iClose, 
how can I use this code?

I use this function to emulate iclose but it's not working..

Code: Select all


double _Close[];
int TotalBars=1;
bool IsConsecutiveHighBars(int cbars,int cshift) {
for (int cnt=cshift; cnt<=cshift+cbars;cnt++) { 
if (iClose(Symbol(),0,cnt)<=iClose(Symbol(),TimeFrame,cnt+1)) return(false);
}
Print ("High=True");
return(true);
}
bool IsConsecutiveLowBars(int cbars,int cshift) {
for (int cnt=cshift; cnt<=cshift+cbars;cnt++) {
if (iClose(Symbol(),0,cnt)>=iClose(Symbol(),TimeFrame,cnt+1)) return(false);
}
Print ("Low=false");
return(true);
}
double iClose(string symbol,ENUM_TIMEFRAMES timeframe,int index)
  {
 double close=0;
 ArraySetAsSeries(_Close,true);
 int copied=CopyClose(symbol,timeframe,0,TotalBars,_Close);
 if(copied>0 && index<copied) close=_Close[index];
 return(close);
  }

Re: MT4 Indicator requests and ideas

Posted: Tue Mar 21, 2017 10:28 pm
by Rockweli
Dear mr.mladen or mrtools,

I have a request & idea . Can you make color changing ma line that moving opposite direction to price line. So we can enter for crossing time.
Like this indicator (But it late) -  adaptive Gann High-Low activator jma Heiken Ashi arrows-1_2.0.ex4     

 
Regards.............

Re: MT4 Indicator requests and ideas

Posted: Tue Mar 21, 2017 11:09 pm
by mladen
baraozemo wrote:Hi,

Mt5 doesn't have iClose, 
how can I use this code?

I use this function to emulate iclose but it's not working..

Code: Select all

double _Close[]; int TotalBars=1;bool IsConsecutiveHighBars(int cbars,int cshift) { for (int cnt=cshift; cnt<=cshift+cbars;cnt++) { if (iClose(Symbol(),0,cnt)<=iClose(Symbol(),TimeFrame,cnt+1)) return(false); } Print ("High=True"); return(true); } bool IsConsecutiveLowBars(int cbars,int cshift) { for (int cnt=cshift; cnt<=cshift+cbars;cnt++) { if (iClose(Symbol(),0,cnt)>=iClose(Symbol(),TimeFrame,cnt+1)) return(false); } Print ("Low=false"); return(true); } double iClose(string symbol,ENUM_TIMEFRAMES timeframe,int index) { double close=0; ArraySetAsSeries(_Close,true); int copied=CopyClose(symbol,timeframe,0,TotalBars,_Close); if(copied>0 && index<copied) close=_Close[index]; return(close); } 
Use CopyClose() - or even better CopyRates() and then you shall have all the necessary data for the chosen bar

Re: MT4 Indicator requests and ideas

Posted: Wed Mar 22, 2017 7:08 am
by mntiwana
Pava wrote:
T3(vhf adaptive) ITrend   mtf+alerts+arrows.ex4 -this one...I believe it was posted yesterday by MrTools...
Thanks for early response,it is working well,even with out any change at belonging post (not edited) the problem is clear,space in between "itrend to mtf" is not usual.

Re: MT4 Indicator requests and ideas

Posted: Wed Mar 22, 2017 7:28 am
by Pava
thanks...works fine now