Page 4 of 434

Re: MT4 Indicators with alerts/signals

Posted: Wed Feb 22, 2017 11:27 pm
by Rockweli
Hi ,
please make this stc indicator as a non repainting version

 stc_color new.mq4  5.23 KB   0 downloads 

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

Re: MT4 Indicators with alerts/signals

Posted: Thu Feb 23, 2017 12:17 am
by mladen
Rockweli wrote:Hi ,
please make this stc indicator as a non repainting version

 stc_color new.mq4  5.23 KB   0 downloads 

Regards............. 
This is the non-repainting Schaff trend cycle :  Schaff Trend Cycle nrp.mq4     
Or you can use this one (which is much newer and much more efficient - also does not repaint) :  Schaff Trend Cycle - adjustable signal mtf.mq4     

Re: MT4 Indicators with alerts/signals

Posted: Fri Feb 24, 2017 3:16 am
by Cladi39
Hello people, i need Trend Direction & force indicator with buffers and arrows for OB/OS, That exist?. Thanks soo much in advance.

Re: MT4 Indicators with alerts/signals

Posted: Fri Feb 24, 2017 3:40 am
by mntiwana
Cladi39 wrote:Hello people, i need Trend Direction & force indicator with buffers and arrows for OB/OS, That exist?. Thanks soo much in advance.
Here is an last smooth version (4 color-nrp sloping-36 averages-vhf adaptive) from and a averages version (user friendly) too,i guess no arrows version was posted then.

Re: MT4 Indicators with alerts/signals

Posted: Fri Feb 24, 2017 2:39 pm
by Cladi39
Thanks soo much Mr. mntiwana your help is very apreciated.

Re: MT4 Indicators with alerts/signals

Posted: Fri Feb 24, 2017 2:41 pm
by Cladi39
I need this indicators with buffers on the arrows, it is posible to share it? thanks soo much.

volatility-hypertrend

Re: MT4 Indicators with alerts/signals

Posted: Fri Feb 24, 2017 5:43 pm
by mntiwana
Cladi39 wrote:I need this indicators with buffers on the arrows, it is posible to share it? thanks soo much.

volatility-hypertrend
What do you means for buffers on arrows.
here is the one i have.

Re: MT4 Indicators with alerts/signals

Posted: Fri Feb 24, 2017 6:47 pm
by Cladi39
I need buffers for the arrows for iCustom function. Thanks soo much

Re: MT4 Indicators with alerts/signals

Posted: Fri Feb 24, 2017 6:56 pm
by mladen
Cladi39 wrote:I need buffers for the arrows for iCustom function. Thanks soo much
That indicator is using objects for arrows. Can not use buffers for arrows if it is drawing values in a sub-window and on the main chart at the same time

Re: MT4 Indicators with alerts/signals

Posted: Fri Feb 24, 2017 8:39 pm
by Loki
Cladi39 wrote:I need buffers for the arrows for iCustom function. Thanks soo much
Why not using something like (as an example);

//----
double bufferup[],bufferdn[];

//----
bufferup = iCustom(NULL,0,"volatility-hypertrend",1,i);
bufferdn = iCustom(NULL,0,"volatility-hypertrend",2,i);

if (bufferup[i]!=EMPTY_VALUE && bufferup[i+1]==EMPTY_VALUE)
trend=1

if (bufferdn[i]!=EMPTY_VALUE && bufferdn[i+1]==EMPTY_VALUE)
trend=-1
//----