Since the November bear move, every (cycle) bear push lower has been on lower energy. The December rally had a cycle length (A) and the 2013 blast off had a cycle length (B).
These ruler lengths were overlaid on the next two bull rallies so that the chart reader can compare the time the bulls have had control.
My analysis:
If the bulls have a good day on Tuesday the odds go up of a consolidation and then another push higher, like the March - April rally.
If the bears win the day, the odds go up for a a pullback. Since the bear power on each pullback has been so pathetic, it is difficult for me to see a the bears showing an even weaker hand.
Taking into account the reversal day on Wednesday in this bull extended market, the lowest odds would go to the bulls quickly recapturing those high prints.
Code:
Value99 = average(close data2, 13);
Value12 = (C data2 - value99) / avgtruerange(13)[13] data2;
Value99 = average(close data3, 13);
Value13 = (C data3 - value99) / avgtruerange(13)[13] data3;
Value99 = average(close data4, 13);
Value14 = (C data4 - value99) / avgtruerange(13)[13] data4;
Value99 = average(close data5, 13);
Value15 = (C data5 - value99) / avgtruerange(13)[13] data5;
Value99 = average(close data6, 13);
Value16 = (C data6 - value99) / avgtruerange(13)[13] data6;
Value99 = average(close data7, 13);
Value17 = (C data7 - value99) / avgtruerange(13)[13] data7;
Value99 = average(close data8, 13);
Value18 = (C data8 - value99) / avgtruerange(13)[13] data8;
Value99 = average(close data9, 13);
Value19 = (C data9 - value99) / avgtruerange(13)[13] data9;
Value99 = average(close data10, 13);
Value20 = (C data10 - value99) / avgtruerange(13)[13] data10;
Value98 = (value12+value13+value14+value15+value16+value17+value18+value19+value20);
plot1(value98, "SIG", iff(value98>0,green,iff(value98<0,red,0)));
plot2(6);
plot3(-6);






