Hello, why do I get the following error trying to run the attached screener program: screener temporarily not available (Screener ist zur Zeit nicht verfügbar) (it was available yesterday, but only for a short time and only for weekly intervals)? Thanks very much for helping. // long: Doppelboden nach tiefem Fall, dann Retest der Nackenlinie von oben mit grüner Kerze. 8,20,15 Kerzen von jetzt zurück für die 3massgeblichen Intervalle //Doppelboden definieren y1= high[8] for a = 8 to 18 y1 = max(high[a],y1) next y2= high[19] for b = 19 to 43 y2 = max(high[b],y2) next indicator2=abs(y2-y1)<0.5*AverageTrueRange[14](close) //zwei richtige Bäuche des Doppelbodens y3=high[44] for c=44 to 50 y3=max(high[c],y3) next indicator6=y3<y2 //Erholung nach tiefem Fall indicator1=(highest[150]-lowest[150])>2.5*(y1-lowest[150]) //Aktuelle Kerze grün und berührt (fast) Nackenlinie indicator3=close>(y1 and y2) and close>open indicator4= abs(low-y2)<0.5*AverageTrueRange[14](close) //Ausbruch nach oben hatte schon stattgefunden indicator5=lowest[close[4]]>(y1 or y2) c1= (indicator1 AND indicator2 AND indicator3 and indicator4 and indicator5 and indicator6) filter=c1 SCREENER [filter](volume)