End of B

This was a Shape up to a No Break Extension (T). There was a volume shelf attraction, and a triple volume flip that made this possible.

Blue horizontal is still a resistance.

Buy the 9th hour for a higher high.

It should cap out between 80 and 90. You want to see a spike high, not a Momentum one.

The head level started at 1.0486

Refer to my Head Chokes entry to figure out how to work with a pending head.

I have a 2-pip tolerance for keeping the spike high in place.

   
      if (
      i>=0 && High[i+1]>=iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,14,i))-20*Point &&
      High[i+1]>High[i+2]+130*Point && High[i]<High[i+1]+20*Point && Low[i+1]>iMA(symbol,0,8,0,MODE_EMA,PRICE_OPEN,i+1) 
      ) {
        ObjectCreate("Countessz"+i,OBJ_TEXT, 0, Time[i+1], High[i+1]+90*Point);
             ObjectSetText("Countessz"+i, "SPK", 15, "Arial Black", clrCrimson);
             if (Open[i]<Close[i]) ObjectSetText("Countessz"+i, "SPK", 15, "Arial Black", clrYellow);
             
              }