[HASHTAG]#property[/HASHTAG] copyright "Copyright 2013, "
[HASHTAG]#property[/HASHTAG] link "Jane"
[HASHTAG]#property[/HASHTAG] version "1.00"
[HASHTAG]#property[/HASHTAG] strict
[HASHTAG]#property[/HASHTAG] indicator_chart_window
[HASHTAG]#property[/HASHTAG] indicator_buffers 2
//----
input bool UseCenterLineFilter=false;
input bool UseRVIFilter=false;
input bool UseAlert =true;
input bool UseMail =true;
input color ArrowColorUp =clrBlue;
input color ArrowColorDn =clrRed;
input string FileSound ="alert.wav";
//----
int account =3123632;
extern int period =20;
extern double deviation =2.0;
extern double step =0.02;
extern double maximum =0.2;
extern int indent =0;
//----
double ExtArrowBufferUp[];
double ExtArrowBufferDn[];

