I made some setting changes in the indicator and saved it as a 5 min indicator.
Code: Select all
extern bool ShowCounterTrend=true;//gives too CT alerts
extern bool ShowDaily2_1=true;//setting this to true the indicator shows to the D1 2.1.1 Stoch
//extern bool UseD1StochforAlert=true;// setting this to true the indicator uses D1 2.1.1 Stoch in combination with 7.2.2 you must set UseW1StochforAlert to false
//extern bool UseW1StochforAlert=false;// setting this to true the indicator uses W1 2.1.1 Stoch in combination with 7.2.2 you must set UseD1StochforAlert to false
extern bool UseOnly7_2forEntryAlert=false;// this setting will only use the Stoch 7.2.2 for the enrty alerts the HigherTF Stoch 2.1.1 is not used independend from the above setting
extern bool PopupAlert=true; // ALERTS WHEN WHENEVER PRICE GOES BELOW 90&70 AND ABOVE 10&30 AND HT STOCH CONFIRMS
extern bool EmailAlert= false;
extern bool PushAlert=false;
extern bool GiveStoch2_1_ExitAlerts=false;//set this to false if you have set ShowCounterTrend to true, because it will give you an immediatly exit alert in that case
extern bool GiveStoch7ExitAlerts=true;//gives Stoch 7.2.2 exits alerts for BUY if we have Stoch 7.2.2 >=90 and for SELL if we have Stoch 7.2.2<=10
extern bool GiveTMASlopeExitAlert=true;
int HigherTF_Used = 60;
int HigherTF2_Used =240;
extern string Set_Stoch_Alert_Levels="Default = 20, 40, 60, 80";
extern int LevelOne=25; // default = 20
extern int LevelTwo = 25; //CHANGE TO 10 IF YOU ONLY WANT 1 ALERT // default = 40
extern int LevelThree = 75; //CHANGE TO 90 IF YOU ONLY WANT 1 ALERT // default = 60
extern int LevelFour=75; // default = 80
extern string Stoch_Settings="Default = 7, 2, 2, 2, 1";
extern int KPeriod = 12;
extern int DPeriod = 2;
extern int Slowing=5;Next post the 15 min
Doug