Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.
From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.
Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
Elite Section
Get access to private discussions, specialized support, indicators and trading systems reported every week.
Advanced Elite Section
For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
I need a signal arrow and audio alert for this indicator at the cross over point
I know you coders are inundated with requests.
I hope one of you can find time to help me out .
It's a great indicator
Thanks in advance
I need a signal arrow and audio alert for this indicator at the cross over point
I know you coders are inundated with requests.
I hope one of you can find time to help me out .
It's a great indicator
Thanks in advance
Well you need to post thecode for anyone to do that
Sorry, Increase never had any experience with this code stuff before
I hope this is what you need
Thanks
//--------ang_Zad (C)-------------------
#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Blue
#property indicator_color2 Red
//----------------------
extern double ki=4;
//--------------------
double za[],z,za2[],z2;
//************************************************** ******
int init(){
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0,za);
SetIndexBuffer(1,za2);
return(0);}
//************************************************** ******
int start() {
int i,cbi;
int n,ai,bi,f,ai2,bi2,f2;
cbi=Bars-IndicatorCounted()-1;
//------------------------------------------------------------------------------------------------------------------------------
for(i=cbi; i>=0; i--) {
if (Close[i]>z && Close[i]>Close[i+1]) z=za[i+1]+(Close[i]-za[i+1])/ki;
if (Close[i]<z && Close[i]<Close[i+1]) z=za[i+1]+(Close[i]-za[i+1])/ki;
if (Close[i]>z2 && Close[i]<Close[i+1]) z2=za2[i+1]+(Close[i]-za2[i+1])/ki;
if (Close[i]<z2 && Close[i]>Close[i+1]) z2=za2[i+1]+(Close[i]-za2[i+1])/ki;
if (i>Bars-5) {z=Close[i]; z2=z;}
za[i]=z;
za2[i]=z2;
}
//------------------------------------------------------
return(0);}
//************************************************** ******