4-Letter Bird

Poor Toy Soldiers, they may be thinking that I am picking on them.

I’m not. It is a side effect of being a poet to wanting to find meaning, content even when it is not necessary.

I’m just doing my own thing passing through life.

With candour I find my essence in opposing faulty thinking.

So when Ira says, this market is looking for ways to become bullish again, I display my own evidence of a market that is trying to break down, but has to make liquidity breaks to find new money coming in. Some would refer to this as giving a discount.

I believe that a liquidity break is brought on by at least two times half an hour disconnection from the 30-sample BB along with a deeply oversold RSI4 reading.

 //////Liquidity break up
  
  if (i>0 && orange[i+3]!=Low[i+3] && orange[i+2]==Low[i+2] && orange[i+1]==Low[i+1] && iRSI(symbol,0,4,PRICE_MEDIAN,i)<10 && iRSI(symbol,0,4,PRICE_MEDIAN,i-1)>10 ){
    ObjectCreate("Talmat"+DoubleToStr(i), OBJ_TEXT, 0, Time[i+4], Low[i]+120*Point); 
               ObjectSetText("Talmat"+DoubleToStr(i), "7-hr Liq Brk", 32, "Impact", Purple);
   if (Low[i]<stratod[i]) ObjectSetText("Talmat"+DoubleToStr(i), "Kick Start", 32, "Impact", Blue);
  }
  
  if (i>0 && orange[i+4]!=Low[i+4] && orange[i+3]==Low[i+3] && orange[i+2]==Low[i+2] && iRSI(symbol,0,4,PRICE_MEDIAN,i)<10 && iRSI(symbol,0,4,PRICE_MEDIAN,i-1)>9 ){
    ObjectCreate("Talmat"+DoubleToStr(i), OBJ_TEXT, 0, Time[i+4], Low[i]+120*Point); 
               ObjectSetText("Talmat"+DoubleToStr(i), "7-hr Liq Brk", 32, "Impact", Purple);
   if (Low[i]<stratod[i]) ObjectSetText("Talmat"+DoubleToStr(i), "Kick Start", 32, "Impact", Blue);
  }
  
  //////Liquidity break down
  
  if (i>0 && yellow3[i+3]!=High[i+3] && yellow3[i+2]==High[i+2] && yellow3[i+1]==High[i+1] && iRSI(symbol,0,4,PRICE_MEDIAN,i)>90 && iRSI(symbol,0,4,PRICE_MEDIAN,i-1)<90 ){
    ObjectCreate("Talmat"+DoubleToStr(i), OBJ_TEXT, 0, Time[i+4], High[i]-120*Point); 
               ObjectSetText("Talmat"+DoubleToStr(i), "Liq Brk", 32, "Impact", DeepPink);
               if (High[i]>stratou[i]) ObjectSetText("Talmat"+DoubleToStr(i), "Kick Start", 32, "Impact", Blue);
  }

I also believe that if the 3rd 30-minute candle was outside the Stratosphere line, that’s more of a Horse Kick, hence I am calling it a Kick Start.

Notice below that the Kick Start low eventually got re-visited and exceeded by some 6 pips.

So was the last Kick Start print on the upside. If the liquidity breaks occur to the upside and the last Kick Start high was re-enforced, why would you be wanting to look for more upside? I believe when money comes in to this machine spinning its wheels in one place, the direction would be utterly clear.

I’m good old friend of the 30-minute chart. It brings out the best of me, like histogram plots made onto the main chart. I may be the first to have ever done this in the history of MT4.

This is an example for programming with feelings. I do not consciously know why I would need two sets of arrays to make the plot, but I feel that it should be done that way, and ultimately it works.

I guess dumb ass Jack Ma’s “emotional intelligence” may actually refer to something in the right context.