The more trades you can recognize, the better.
Plotting BB rejections starting now. First pass at the filters. (Green and Red rectangles). The idea is to define risk and have something to hinge the size on. I plot the rectangles one candle back to see the actual candle better. Real-time/repaint is what I went with, as 1 hour later, the price may have gone too far already.



///BB rejection on the downside
if (Low[i]<Low[i+1] && Close[i]>Open[i] && Low[i]<iBands(symbol,0,30,2,0,PRICE_MEDIAN,MODE_LOWER,i) && Close[i]>iBands(symbol,0,30,2,0,PRICE_MEDIAN,MODE_LOWER,i)+60*Point && High[i]>iBands(symbol,0,30,2,0,PRICE_MEDIAN,MODE_LOWER,i)+100*Point
&& iBands(symbol,0,120,2,0,PRICE_MEDIAN,MODE_UPPER,i)-iBands(symbol,0,120,2,0,PRICE_MEDIAN,MODE_LOWER,i)>1150*Point
&& Drive[i]>-1 && Drive[i+1]>-1 && Drive[i+2]>-1
){
ObjectCreate("MINUSZ"+IntegerToString(i),OBJ_RECTANGLE,0, Time[i+1], Close[i], Time[i+2], Low[i]);
ObjectSet("MINUSZ"+IntegerToString(i),OBJPROP_COLOR,clrGreen);
ObjectSet("MINUSZ"+IntegerToString(i),OBJPROP_WIDTH,10);
ObjectSet("MINUSZ"+IntegerToString(i),OBJPROP_STYLE,STYLE_DOT);
ObjectSet("MINUSZ"+IntegerToString(i),OBJPROP_BACK,1);
}
///BB rejection on the upside
if (High[i]>High[i+1] && Close[i]<Open[i] && High[i]>iBands(symbol,0,30,2,0,PRICE_MEDIAN,MODE_UPPER,i) && Close[i]<iBands(symbol,0,30,2,0,PRICE_MEDIAN,MODE_UPPER,i)-60*Point && Low[i]<iBands(symbol,0,30,2,0,PRICE_MEDIAN,MODE_UPPER,i)-100*Point
&& iBands(symbol,0,120,2,0,PRICE_MEDIAN,MODE_UPPER,i)-iBands(symbol,0,120,2,0,PRICE_MEDIAN,MODE_LOWER,i)>1150*Point
&& iBands(symbol,0,30,2,0,PRICE_MEDIAN,MODE_UPPER,i)-iBands(symbol,0,30,2,0,PRICE_MEDIAN,MODE_LOWER,i)>351*Point
&& Drive[i]<1 && Drive[i+1]<1 && Drive[i+2]<1
){
ObjectCreate("MINUSZ"+IntegerToString(i),OBJ_RECTANGLE,0, Time[i+1], Close[i], Time[i+2], High[i]);
ObjectSet("MINUSZ"+IntegerToString(i),OBJPROP_COLOR,clrRed);
ObjectSet("MINUSZ"+IntegerToString(i),OBJPROP_WIDTH,10);
ObjectSet("MINUSZ"+IntegerToString(i),OBJPROP_STYLE,STYLE_DOT);
ObjectSet("MINUSZ"+IntegerToString(i),OBJPROP_BACK,1);
}
Most likely the last album of the year, #42. Started working on an instrumental one, think Tangerine Dream.