Hello,
Can someone please help me fix alerts ( sound and push ) for this indicator ?
Thank you!
Can someone please help me fix alerts ( sound and push ) for this indicator ?
Thank you!
Attached File(s)
I will code your EAs and Indicators for no charge 82,351 replies
Need help programming some indicators/EAs 67 replies
Sharing our Best EAs and Indicators Free of Cost 13 replies
EAs and indicators relating to moutaki... 22 replies
Do You Buy EAs or Indicators from ebay? 59 replies
DislikedHello, Can someone please help me fix alerts ( sound and push ) for this indicator ? Thank you! {file}Ignored
DislikedI am looking for a sound/email alert for both CCI cross zero line. I know there is an alert function already. I would want the alert to happen once the candle closes. Thank you {file}Ignored
if (Zero_cross_alert == true) {
if (prevtime == Time[0]) {
return(0);
}
else {
if(EntryCCIBuffer[0] < -Alert_level__Includes_negative) {
if((TrendCCIBuffer[0] < -Alert_level__Includes_negative) && (TrendCCIBuffer[1] >= -Alert_level__Includes_negative)) {
Alert(Symbol(), " M", Period(), " Trend & Entry CCI Have both crossed below zero");
}
}
else if(EntryCCIBuffer[0] > Alert_level__Includes_negative) {
if((TrendCCIBuffer[0] > Alert_level__Includes_negative) && (TrendCCIBuffer[1] <= Alert_level__Includes_negative)) {
Alert(Symbol(), " M", Period(), " Trend & Entry CCI Have both crossed above zero");
}
}
prevtime = Time[0];
}
} if (Zero_cross_alert == true) {
if (prevtime == Time[0]) {
return(0);
}
else {
if(EntryCCIBuffer[1] < -Alert_level__Includes_negative) {
if((TrendCCIBuffer[1] < -Alert_level__Includes_negative) && (TrendCCIBuffer[2] >= -Alert_level__Includes_negative)) {
Alert(Symbol(), " M", Period(), " Trend & Entry CCI Have both crossed below zero");
}
}
else if(EntryCCIBuffer[1] > Alert_level__Includes_negative) {
if((TrendCCIBuffer[1] > Alert_level__Includes_negative) && (TrendCCIBuffer[2] <= Alert_level__Includes_negative)) {
Alert(Symbol(), " M", Period(), " Trend & Entry CCI Have both crossed above zero");
}
}
prevtime = Time[0];
}
} Disliked{quote} Hi Sin I think it is manufactured (not coded) by you " //+------------------------------------------------------------------+ //| | //| BolliToucher: Copyright2018 | //| | //| Made By SiNnY | //| | //+------------------------------------------------------------------+ #property copyright "BolliToucher: Copyright
2018, Made By SiNnY" //---- indicator settings #property indicator_chart_window #property indicator_buffers 4 #property indicator_color1 Magenta #property indicator_color2 Magenta #property indicator_color3 clrRed #property...
Ignored
DislikedHi mntiwana / other coders, Can you fix the e-mail alerts when the Lime Green / Dark Blue harmonic patterns appear on the charts ? {file}Ignored
Disliked{quote} Here is this of Mladen's working version with correct name {file}Ignored
Disliked{quote} Respected MSTiwana, I am your fan, the attached Indicator showing only level lines and nothing els. please help me. Thank youIgnored