|
#property indicator_separate_window
#property indicator_buffers 2
#property indicator_color1 Red
extern int SL=1;
double JG[];
double buf[];
int init()
{
IndicatorBuffers(1);
SetIndexBuffer(0,JG);
SetIndexBuffer(1,buf);
SetIndexStyle(0,0,0,2,Red);
SetIndexDrawBegin(0,SL);
return(0);
}
int start()
{
int limit=Bars-IndicatorCounted();
for(int i=0; i<limit; i++)
{
buf[i]=iMA(NULL,0,SL,0,0,0,i);
}
for(int a=0; a<limit; a++)
{
JG[i]=iMAOnArray(buf,Bars,SL,0,MODE_SMA,i);
}
return(0);
}
|
|