Bad News Brown

I’m the first m*********r on the block for the cheese & I’m the last m********r to leave. (Geto Boys)

Fresh count for the bear.

That Holding Direction Down thick Blue is 95 pips up from the recent swing low. The depth is what a liquidity break would be expected to max out at (stats). That’s where price got to during the Powel relief counter rally (see arrows).

After the volatility hook back it is clear now that 3 volatility crossback culmination waves down got optioned for the bears, see the Green number rolling back to zero.

No I did not just invent this plot today.

if (dir[1]>0 && redcount[1]<4){
   ObjectCreate("ENVELOPEt"+IntegerToString(i), OBJ_TREND, 0, Time[10], iLow(symbol,0,iLowest(symbol,0,MODE_LOW,90,0))+955*Point, Time[0], iLow(symbol,0,iLowest(symbol,0,MODE_LOW,90,0))+955*Point);
          ObjectSetInteger(0,"ENVELOPEt"+IntegerToString(i),OBJPROP_COLOR,clrBlue);
            ObjectSet("ENVELOPEt"+IntegerToString(i),OBJPROP_BACK,1);
             ObjectSet("ENVELOPEt"+IntegerToString(i),OBJPROP_RAY_RIGHT,1);
            ObjectSet("ENVELOPEt"+IntegerToString(i),OBJPROP_WIDTH,19);
            ObjectCreate("ENVELOPEd"+IntegerToString(i), OBJ_TEXT, 0, Time[0], iLow(symbol,0,iLowest(symbol,0,MODE_LOW,90,0))+995*Point); 
                     ObjectSetText("ENVELOPEd"+IntegerToString(i), "                            HOLDING DIR DOWN", 22, "Arial Black", clrMagenta);

}
if (dir[1]<0 && greencount[1]<4){
   ObjectCreate("ENVELOPEt"+IntegerToString(i), OBJ_TREND, 0, Time[10], iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,90,0))-955*Point, Time[0], iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,90,0))-955*Point);
          ObjectSetInteger(0,"ENVELOPEt"+IntegerToString(i),OBJPROP_COLOR,clrBlue);
            ObjectSet("ENVELOPEt"+IntegerToString(i),OBJPROP_BACK,1);
              ObjectSet("ENVELOPEt"+IntegerToString(i),OBJPROP_RAY_RIGHT,1);
            ObjectSet("ENVELOPEt"+IntegerToString(i),OBJPROP_WIDTH,19);
            ObjectCreate("ENVELOPEd"+IntegerToString(i), OBJ_TEXT, 0, Time[0], iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,90,0))-955*Point); 
                     ObjectSetText("ENVELOPEd"+IntegerToString(i), "                            HOLDING DIR UP", 22, "Arial Black", clrMagenta);

}

Where are you wrong? After 4 30-minute closes above 1.06185 something else is up.

Today I brought music for everyone so that there’ll be no fighting.

The Devil Wears Scammiest

I used to think that once I score a retirement money I would want to take a look at other trader successes, i.e. side with them for an “apprenticeship”. The older I get the more I relize that not all that shines is made of gold. Something that does not come with a direction nor with a when, but makes you have to remember a lot of colors and gives you a lot of extra doubts is hardly any help.

Instead of making a trip in vein, I hereby present the scammiest indicator award for TTM Squeeze to John Carter.

Ira Epstein, albeit not a trader, but for the “Enhanced Bollinger Bands” idea would get the second place. Losing the “Embedding” usually occurs just before price tags the 18-day MA, so I have no clue how this “I told you so” does even make sense as a trade.

I am baffled how the “we draw waves / consolidations” croud gets away with charging monthly $117 or even $147 in cases for virtually nothing useful.

Not gonna go off on the percentaggi clowns again, but just take a note of the kind of people John Carter surrounds himself with. If you can’t have the Fibonacci Queen, the Fibonacci Princess will have to do. One step away from an asylum. It is the last time I would point out the one size fits all problem. A delirious dream.

Elliott Wave had an idea about counting, but could never exactly figure out what.

I tell you what to count, the number of when price returns from a volatility expansion in a certain manner.

A clean run has 3 of these.

A mixed run has some dirt blended in, and they are deemed to reach a 4 count.

Dirty is a gray crossback / now added “Flash Gordon” – vaining momentum for extra count. A Zero can prompt a further run to another 4.

I might still look at what Sang Lucci does on a close up. The Level 2 “tape reading” guruship would have to be my last chapter explored.

Certainly these guys are some of the loudest ones. Every time I hear the self proclaimed Gurus talk about “7 and 8 figure traders” like they invented trading, I feel like I would have to become a “Go Figure Trader” just in case.

for(i=780; i>0; i--){
dir[i]=dir[i+1];
greencount[i]=greencount[i+1];
redcount[i]=redcount[i+1];
   ////upside progression
   if (Close[i+1]>iBands(symbol,30,30,2,0,PRICE_MEDIAN,MODE_UPPER,i+1)+10*Point && Close[i]<iBands(symbol,30,30,2,0,PRICE_MEDIAN,MODE_UPPER,i)-10*Point){
       ObjectCreate("120BPM"+IntegerToString(i),OBJ_VLINE,0, Time[i+1], 0);
      ObjectSet("120BPM"+IntegerToString(i),OBJPROP_COLOR,clrCoral);
      //upside regression
      if (iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,2,i+1))<iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,36,i+3))-20*Point) {ObjectSet("120BPM"+IntegerToString(i),OBJPROP_COLOR,clrGray);
         if (iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,2,i+1))-iLow(symbol,0,iLowest(symbol,0,MODE_LOW,36,i+3))>640*Point) greencount[i]=0;
         else if (greencount[i]>0 && greencount[i+1]==greencount[i+2] && greencount[i+2]==greencount[i+3] && greencount[i+3]==greencount[i+4] && greencount[i+4]==greencount[i+5] && greencount[i+5]==greencount[i+6]) greencount[i]++;
           ObjectCreate("120BPMc"+IntegerToString(i), OBJ_TEXT, 0, Time[i+2], Low[i+1]-60*Point); 
             ObjectSetText("120BPMc"+IntegerToString(i), greencount[i], 42, "Impact", clrLime);
      }
      else {
      dir[i]=-1;
      greencount[i]=0;
      redcount[i]++;
             ObjectCreate("120BPMc"+IntegerToString(i), OBJ_TEXT, 0, Time[i+2], High[i+1]+110*Point); 
             ObjectSetText("120BPMc"+IntegerToString(i), redcount[i], 42, "Impact", clrRed);
      
      }
      ObjectSet("120BPM"+IntegerToString(i),OBJPROP_WIDTH,5);
      ObjectSet("120BPM"+IntegerToString(i),OBJPROP_BACK,1);
      
   }
   //downside progression   
     if (Close[i+1]<iBands(symbol,30,30,2,0,PRICE_MEDIAN,MODE_LOWER,i+1)-15*Point && Close[i]>iBands(symbol,30,30,2,0,PRICE_MEDIAN,MODE_LOWER,i)){
       ObjectCreate("120BPM"+IntegerToString(i),OBJ_VLINE,0, Time[i+1], 0);
      ObjectSet("120BPM"+IntegerToString(i),OBJPROP_COLOR,clrTeal);
      //downside regression
      if (iLow(symbol,0,iLowest(symbol,0,MODE_LOW,2,i+1))>iLow(symbol,0,iLowest(symbol,0,MODE_LOW,36,i+3))+20*Point) {ObjectSet("120BPM"+IntegerToString(i),OBJPROP_COLOR,clrGray); 
      if (iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,30,i+1))-iLow(symbol,0,iLowest(symbol,0,MODE_LOW,2,i+1))>640*Point) redcount[i]=0;
         else if (redcount[i]>0 && redcount[i+1]==redcount[i+2] && redcount[i+2]==redcount[i+3] && redcount[i+3]==redcount[i+4] && redcount[i+4]==redcount[i+5] && redcount[i+5]==redcount[i+6])  redcount[i]++;
         ObjectCreate("120BPMc"+IntegerToString(i), OBJ_TEXT, 0, Time[i+2], High[i+1]+110*Point); 
             ObjectSetText("120BPMc"+IntegerToString(i), redcount[i], 42, "Impact", clrPink);
      
      } 
      else {
       dir[i]=1;
       redcount[i]=0;
       greencount[i]++;
             ObjectCreate("120BPMc"+IntegerToString(i), OBJ_TEXT, 0, Time[i+2], Low[i+1]-60*Point); 
             ObjectSetText("120BPMc"+IntegerToString(i), greencount[i], 42, "Impact", clrDarkGreen);
       
      }
      ObjectSet("120BPM"+IntegerToString(i),OBJPROP_WIDTH,5);
      ObjectSet("120BPM"+IntegerToString(i),OBJPROP_BACK,1);
   }
   if (iFractals(symbol,0,MODE_UPPER,i+1)&& High[i+1]<iBands(symbol,30,30,2,0,PRICE_MEDIAN,MODE_UPPER,i+1) && High[i+1]==iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,200,i+1))
      && redcount[i]>1){
           ObjectCreate("Punktums"+i,OBJ_TEXT, 0, Time[i], High[i]+50*Point);   
        ObjectSetText("Punktums"+i, "   "+CharToStr(126), 56, "Webdings", clrBlack);
     ObjectCreate("Punktumss"+i,OBJ_TEXT, 0, Time[i], High[i]+50*Point);   
        ObjectSetText("Punktumss"+i, "   "+CharToStr(126), 61, "Webdings", clrGold); if (redcount[i+1]==redcount[i+2] && redcount[i+2]==redcount[i+3] && redcount[i+3]==redcount[i+4] && redcount[i+4]==redcount[i+5] && redcount[i+5]==redcount[i+6] && redcount[i+6]==redcount[i+7])  redcount[i]++; 
         ObjectCreate("120BPMc"+IntegerToString(i), OBJ_TEXT, 0, Time[i+2], High[i+1]+110*Point); 
             ObjectSetText("120BPMc"+IntegerToString(i), redcount[i], 42, "Impact", clrPink);}
   
      if (iFractals(symbol,0,MODE_LOWER,i+1)&& Low[i+1]>iBands(symbol,30,30,2,0,PRICE_MEDIAN,MODE_LOWER,i+1) && Low[i+1]==iLow(symbol,0,iLowest(symbol,0,MODE_LOW,200,i+1))
      && greencount[i]>1){
           ObjectCreate("Punktums"+i,OBJ_TEXT, 0, Time[i], Low[i]-70*Point);   
        ObjectSetText("Punktums"+i, "   "+CharToStr(126), 56, "Webdings", clrBlack);
     ObjectCreate("Punktumss"+i,OBJ_TEXT, 0, Time[i], Low[i]-70*Point);   
        ObjectSetText("Punktumss"+i, "   "+CharToStr(126), 61, "Webdings", clrGold); if ( greencount[i]==greencount[i+1] && greencount[i+1]==greencount[i+2] && greencount[i+2]==greencount[i+3] && greencount[i+3]==greencount[i+4] && greencount[i+4]==greencount[i+5] && greencount[i+5]==greencount[i+6] && greencount[i+6]==greencount[i+7] && greencount[i+7]==greencount[i+8] && greencount[i+8]==greencount[i+9]) greencount[i]++; 
                 ObjectCreate("120BPMc"+IntegerToString(i), OBJ_TEXT, 0, Time[i+2], Low[i+1]-60*Point); 
             ObjectSetText("120BPMc"+IntegerToString(i), greencount[i], 42, "Impact", clrLime);
             }


}

More Fries For Me

Going with the dark theme. Fernando, the Mexican chef used to call me White Boy.

So say the truth and nothing but the truth.

This one would be about the subjectivity of time. Nothing scientific, all experimental.

I started plotting the greencount and redcount numbers by the lines and there was the dilemma of what to make of the gray lines.

The first, obvious answer was that these are resets, the counter would have to be put back to zero.

Yet, not all gray lines are created equal. A gray with not enough volatility should not refresh the trend and cause resurgence, quite the opposite: it should add to the age rings.

I drew the line at 62 pips as my first pitch.

A liquidity break would be a short lived nove, max 7 hours with a span greater than 52 pips, but less than 90.

Since I am looking at a 32 sample high – low difference, I added 10 pips more.

Granted, it is a fresh idea to enroll Bollinger crossbacks at the other end as evidence of damaging, but your honor, please consider the underwhelming volatility as a difficulty multiplier.

Not enough correction => you shall not pass.

Also, that hourly B-corr print isn’t satisfying by itself to make a swing low call.

It would still make sense to keep a progression count and tally 3, but this count upto 5, 4 is 4/5 of the time gone is a good urgency measure.


Fernando once told me his story when he went back to Mexico. He sat down on the sand with his supply of Brandy, when a drug lord’s security guard approached him and said that it was a private beach. He responded to him: you don’t own the sand on the beach.

I don’t remember much about Ed, the black chef whom was released from San Quentin from all places, but one time after getting high he confessed to the owner that he took home a duck confit with him the prior day.

I also recall when I was driving home from Corte Madera and the shoulder was full of newscast vehicles. At the restaurant the next day Baptiste was commenting about the execution of Stan Tookie Williams. He said, he lifted up his hand after a couple of minutes of receiving the lethal injection shots, asking: Are you doing this right?

These Americans are hypocrites – he added.

Not sure if he was referring to the part of we can add a like (in a form of a Nobel Peace Prise) and a dislike (in the form of a lethal injection) to the very same person.

…Gang style mobbing.

I can’t believe that this quintessential motherf-er Greg Secker just said in his latest scam that he liked to trade Sterling against the EuroDollar.

Eurodollar is not quoted and cannot be traded against anything. It is Dollar denomimated debt issued outside of the United States. It has an effect on overall Dollar liqudity, but the EuroDollar is not a currency, it is a location.

This is one scammer that knows too little.


So let me think, is there any upside left with a 5-print/ 3 progression number? How about NO?! Not, unless you get a liquidity break in the next 6 hours.

No code yet, I want the ideas to settle first.

I’ll Catch Up…

or my name would not be Ketchup.

This 2-pip allowance was missing.

if (Close[i+1]>iBands(symbol,30,30,2,0,PRICE_MEDIAN,MODE_UPPER,i+1)+10*Point && Close[i]<iBands(symbol,30,30,2,0,PRICE_MEDIAN,MODE_UPPER,i)-10*Point){
       ObjectCreate("120BPM"+IntegerToString(i),OBJ_VLINE,0, Time[i+1], 0);
      ObjectSet("120BPM"+IntegerToString(i),OBJPROP_COLOR,clrCoral);
      if (iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,2,i+1))<iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,36,i+3))-20*Point) ObjectSet("120BPM"+IntegerToString(i),OBJPROP_COLOR,clrGray);
      else {
      dir[i]=-1;
      greencount[i]=0;
      redcount[i]++;
      }
      ObjectSet("120BPM"+IntegerToString(i),OBJPROP_WIDTH,5);
      ObjectSet("120BPM"+IntegerToString(i),OBJPROP_BACK,1);
      
   }
     if (Close[i+1]<iBands(symbol,30,30,2,0,PRICE_MEDIAN,MODE_LOWER,i+1)-15*Point && Close[i]>iBands(symbol,30,30,2,0,PRICE_MEDIAN,MODE_LOWER,i)){
       ObjectCreate("120BPM"+IntegerToString(i),OBJ_VLINE,0, Time[i+1], 0);
      ObjectSet("120BPM"+IntegerToString(i),OBJPROP_COLOR,clrTeal);
      if (iLow(symbol,0,iLowest(symbol,0,MODE_LOW,2,i+1))>iLow(symbol,0,iLowest(symbol,0,MODE_LOW,36,i+3))+20*Point) {ObjectSet("120BPM"+IntegerToString(i),OBJPROP_COLOR,clrGray); redcount[i]=0;} 
      else {
         dir[i]=1;
       redcount[i]=0;
       greencount[i]++;
      }
      ObjectSet("120BPM"+IntegerToString(i),OBJPROP_WIDTH,5);
      ObjectSet("120BPM"+IntegerToString(i),OBJPROP_BACK,1);
   }
   if (iFractals(symbol,0,MODE_UPPER,i+1)&& High[i+1]<iBands(symbol,30,30,2,0,PRICE_MEDIAN,MODE_UPPER,i+1) && High[i+1]==iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,200,i+1))
      && redcount[i]>1){
           ObjectCreate("Punktums"+i,OBJ_TEXT, 0, Time[i], High[i]+50*Point);   
        ObjectSetText("Punktums"+i, "   "+CharToStr(126), 56, "Webdings", clrBlack);
     ObjectCreate("Punktumss"+i,OBJ_TEXT, 0, Time[i], High[i]+50*Point);   
        ObjectSetText("Punktumss"+i, "   "+CharToStr(126), 61, "Webdings", clrGold); redcount[i]=3;}
   
      if (iFractals(symbol,0,MODE_LOWER,i+1)&& Low[i+1]>iBands(symbol,30,30,2,0,PRICE_MEDIAN,MODE_LOWER,i+1) && Low[i+1]==iLow(symbol,0,iLowest(symbol,0,MODE_LOW,200,i+1))
      && greencount[i]>1){
           ObjectCreate("Punktums"+i,OBJ_TEXT, 0, Time[i], Low[i]-70*Point);   
        ObjectSetText("Punktums"+i, "   "+CharToStr(126), 56, "Webdings", clrBlack);
     ObjectCreate("Punktumss"+i,OBJ_TEXT, 0, Time[i], Low[i]-70*Point);   
        ObjectSetText("Punktumss"+i, "   "+CharToStr(126), 61, "Webdings", clrGold); greencount[i]=3;}

So now that the 3rd Teal line is in place, the toss up and the break is near.

As my Coit Tower has run out of Chris Spheeris music to play, I ventured to the further east again.

With the Push and the Echo in place, the Weekly R1 is at 1.0698 as the closest target.

That is where the upper daily BB is currently located.

Your choice. Follow me to learn specialization or pay monthly to the one size fits all, all you can trade opposition. Way stronger egos too. I put an unlike on this one before sharing it with you.

Ivory Flower

Here is the news from my little hide-away

Streetside Romeos, dolphins playing their lives away…

Reg, what’s your edge?

You know how to count and that everyone else is a cunt.

Your edge is looking for an FFS (Flash), which is a new high / new low Fractal Falling Short of the 30-min 30 sampl BB. Out of momentum break.

Flash, aa-aah, king of the impossible!

 if (iFractals(symbol,0,MODE_UPPER,i+1)&& High[i+1]<iBands(symbol,30,30,2,0,PRICE_MEDIAN,MODE_UPPER,i+1) && High[i+1]==iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,200,i+1))){
           ObjectCreate("Punktums"+i,OBJ_TEXT, 0, Time[i], High[i]+50*Point);   
        ObjectSetText("Punktums"+i, "   "+CharToStr(126), 56, "Webdings", clrBlack);
     ObjectCreate("Punktumss"+i,OBJ_TEXT, 0, Time[i], High[i]+50*Point);   
        ObjectSetText("Punktumss"+i, "   "+CharToStr(126), 61, "Webdings", clrGold);

One is an atom, one is an Eve. Everything’s relative.

For the last time Percy, what is your sledge?

It is good to know that an upto 95-pip sell off may just be a liquidity break.

Papiamento pATIENT0

 
    if ((((iBands(symbol,0,30,2,0,PRICE_MEDIAN,MODE_UPPER,i)-iBands(symbol,0,30,2,0,PRICE_MEDIAN,MODE_LOWER,i))*10000>58
   
  
   &&  Low[i]<iBands(symbol,60,30,2,0,PRICE_MEDIAN,MODE_LOWER,i) 
    && 
    (High[i+2]>iBands(symbol,60,30,2,0,PRICE_MEDIAN,MODE_UPPER,i+2) || High[i+3]>iBands(symbol,60,30,2,0,PRICE_MEDIAN,MODE_UPPER,i+3)
    || High[i+4]>iBands(symbol,60,30,2,0,PRICE_MEDIAN,MODE_UPPER,i+4) || High[i+5]>iBands(symbol,60,30,2,0,PRICE_MEDIAN,MODE_UPPER,i+5)
    || High[i+6]>iBands(symbol,60,30,2,0,PRICE_MEDIAN,MODE_UPPER,i+6)))
     ||
    (iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,7,i))-Low[i]> 520*Point && Low[i]<iBands(symbol,0,30,2,0,PRICE_MEDIAN,MODE_LOWER,i) && High[i+7]>iBands(symbol,0,30,2,0,PRICE_MEDIAN,MODE_UPPER,i+7))
    )
     && (iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,7,i))-iLow(symbol,0,iLowest(symbol,0,MODE_LOW,18,i+7))>520*Point
      || (iBands(symbol,0,30,2,0,PRICE_MEDIAN,MODE_UPPER,i+7)-iBands(symbol,0,30,2,0,PRICE_MEDIAN,MODE_LOWER,i+7))*10000>27
     
     )   && iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,7,i))-Low[i]<950*Point
    ){
          ObjectCreate("Palmat"+DoubleToStr(i), OBJ_TEXT, 0, Time[i], Low[i]+10*Point); 
          ObjectSetText("Palmat"+DoubleToStr(i), "pATIENT 0", 32, "Impact", DarkGreen);
          if (iBands(symbol,0,15,2,0,PRICE_MEDIAN,MODE_UPPER,i+4)-iBands(symbol,0,15,2,0,PRICE_MEDIAN,MODE_LOWER,i+4)<300*Point && iBands(symbol,0,15,2,0,PRICE_MEDIAN,MODE_UPPER,i+4)-iBands(symbol,0,15,2,0,PRICE_MEDIAN,MODE_LOWER,i+4)>260*Point) ObjectSetText("Palmat"+DoubleToStr(i), "pATIENT 0", 32, "Impact", DarkGray);
     //     if (iLow(symbol,0,iLowest(symbol,0,MODE_LOW,4,i))<iLow(symbol,0,iLowest(symbol,0,MODE_LOW,30,i+5))-100*Point) ObjectSetText("Palmat"+DoubleToStr(i), "pATIENT 0", 32, "Impact", DarkGray);
          
          ObjectCreate(0,"DRACHUPPER"+DoubleToStr(i),OBJ_TREND,0,Time[i],Low[i],Time[iHighest(symbol,0,MODE_HIGH,8,i)],iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,8,i)));
ObjectSetInteger(0,"DRACHUPPER"+DoubleToStr(i),OBJPROP_RAY_RIGHT,False);
ObjectSet("DRACHUPPER"+DoubleToStr(i),OBJPROP_COLOR,clrPowderBlue);
ObjectSet("DRACHUPPER"+DoubleToStr(i),OBJPROP_WIDTH, 8);

S1=1.0543

         if (iLow(symbol,0,iLowest(symbol,0,MODE_LOW,j2-1,0))<Low[j2])    ObjectSet("BUNA3_3ff",OBJPROP_COLOR,clrRed);
           
           if (j2>2) {
             ObjectCreate("Ellipset"+DoubleToStr(j), OBJ_TRIANGLE, 0, Time[j2-3],  Low[j2]+90*Point, Time[j2-3], Low[j2]-420*Point, Time[j2], Low[j2]);
             ObjectSet("Ellipset"+DoubleToStr(j),OBJPROP_COLOR,clrGray);
             ObjectSet("Ellipset"+DoubleToStr(j),OBJPROP_BACK,0);
             ObjectSet("Ellipset"+DoubleToStr(j),OBJPROP_WIDTH,1);
             ObjectSet("Ellipset"+DoubleToStr(j),OBJPROP_STYLE,1);
        
            ObjectCreate("Ellipse3_3ffx",OBJ_TEXT, 0, Time[j2-3], Low[j2]-400*Point);
            ObjectSetText("Ellipse3_3ffx", " S1:"+DoubleToStr(NormalizeDouble(Low[j2]-420*Point,4),4), 17, "Impact", clrWhite);
             ObjectCreate("Ellipse3_3ffy",OBJ_TEXT, 0, Time[j2-3], Low[j2]-400*Point);
            ObjectSetText("Ellipse3_3ffy", "S1:"+DoubleToStr(NormalizeDouble(Low[j2]-420*Point,4),4), 17, "Impact", clrBlue);
            
            
            
              ObjectCreate("Ellipse33_3ffx",OBJ_TEXT, 0, Time[j2-3], Low[j2]-ATRA*0.43);
            ObjectSetText("Ellipse33_3ffx", " S2:"+DoubleToStr(NormalizeDouble(Low[j2]-ATRA*0.43,4),4), 17, "Impact", clrWhite);
             ObjectCreate("Ellipse33_3ffy",OBJ_TEXT, 0, Time[j2-3], Low[j2]-ATRA*0.43);
            ObjectSetText("Ellipse33_3ffy", "S2:"+DoubleToStr(NormalizeDouble(Low[j2]-ATRA*0.43,4),4), 17, "Impact", clrBlue);
           
           }

Now, look for that Wave 5 up.

Take the advice of a humpback snail:

In the event that I don’t reborn, please take this message to understand:

big size = big risk

Andromeda Research

Silicon Dream was epic.

Professor Einstein, check-check the time-time.

The new environment distinguishes between progression and regression highs/lows.

A regression or inside high / low is marked with gray verical, the progression or outside high / low is marked with colored vertical.

& that’s all the progress I made in the last couple of days.

Oh, also if there is a toss up, whichever 30m candle gets closed beyond 3x 30mins is the direction to go with.

Toss up example below (3rd Teal followed by a Coral – but it’s a relapse ultimately, not a turn.)

Oh yeah, fresh count upon a break.

The whole idea is black and white reduction of holding anxiety, i.e. clear answer for having to change stance.

Unlike Ira Epstein’s swingline idea, with this you don’t need to evaluate every single fractal & that’s wonderful.

  if (Close[i+1]>iBands(symbol,30,30,2,0,PRICE_MEDIAN,MODE_UPPER,i+1)+10*Point && Close[i]<iBands(symbol,30,30,2,0,PRICE_MEDIAN,MODE_UPPER,i)-10*Point){
       ObjectCreate("120BPM"+IntegerToString(i),OBJ_VLINE,0, Time[i+1], 0);
      ObjectSet("120BPM"+IntegerToString(i),OBJPROP_COLOR,clrCoral);
      if (iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,2,i+1))<iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,36,i+3))) ObjectSet("120BPM"+IntegerToString(i),OBJPROP_COLOR,clrGray);
      else {
      dir[i]=-1;
      greencount[i]=0;
      redcount[i]++;
      }
      ObjectSet("120BPM"+IntegerToString(i),OBJPROP_WIDTH,5);
      ObjectSet("120BPM"+IntegerToString(i),OBJPROP_BACK,1);
      
   }
     if (Close[i+1]<iBands(symbol,30,30,2,0,PRICE_MEDIAN,MODE_LOWER,i+1)-15*Point && Close[i]>iBands(symbol,30,30,2,0,PRICE_MEDIAN,MODE_LOWER,i)){
       ObjectCreate("120BPM"+IntegerToString(i),OBJ_VLINE,0, Time[i+1], 0);
      ObjectSet("120BPM"+IntegerToString(i),OBJPROP_COLOR,clrTeal);
      if (iLow(symbol,0,iLowest(symbol,0,MODE_LOW,2,i+1))>iLow(symbol,0,iLowest(symbol,0,MODE_LOW,36,i+3))) {ObjectSet("120BPM"+IntegerToString(i),OBJPROP_COLOR,clrGray); redcount[i]=0;} 
      else {
         dir[i]=1;
       redcount[i]=0;
       greencount[i]++;
      }
      ObjectSet("120BPM"+IntegerToString(i),OBJPROP_WIDTH,5);
      ObjectSet("120BPM"+IntegerToString(i),OBJPROP_BACK,1);
   }

We are calling, we are falling, Andromeda.

Stypid Qstions

Did you know that Spongebob was inspired by Graceland?

If there was an answer for market turns and it stared you right in the face, would you see it?

   if (i>0 && Close[i+1]>iBands(symbol,30,30,2,0,PRICE_MEDIAN,MODE_UPPER,i+1)+20*Point && Close[i]<iBands(symbol,30,30,2,0,PRICE_MEDIAN,MODE_UPPER,i)-20*Point){
       ObjectCreate("120BPM"+IntegerToString(i),OBJ_VLINE,0, Time[i+1], 0);
      ObjectSet("120BPM"+IntegerToString(i),OBJPROP_COLOR,clrCoral);
      if (iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,2,i+1))<iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,36,i+3))) ObjectSet("120BPM"+IntegerToString(i),OBJPROP_COLOR,clrGray);
      ObjectSet("120BPM"+IntegerToString(i),OBJPROP_WIDTH,5);
      ObjectSet("120BPM"+IntegerToString(i),OBJPROP_BACK,1);

Now, let’s expand on that music tolerance of yours…

Watch My Hands…

…Because I’m cheating.

According to online sources, the biggest Forex broker is IC Markets with 22 Billion worth of trades placed per day on average. This means 22,000 lots daily making for commission iflows of $132,000 per day going from the gamblers to the firm as base line. Obviously most of this money gets burnt up as payroll and advertisrment and other company expenses. My point is that the numbers sound extra large, since 1 lot means 100k leveraged money, but trading 22 billion a day without people getting margin calls may just be good enough for a break even Forex firm.

If they have 4 million active account holders, that means that the avarage daily trade size per account holder is half a micro lot or 0.0005 lots (1 micro lot is the smallest trade that can be opened). Yes, there must be tons of dormant accounts. For most people the ultimate reality of trading is waiting to become whole again, putting up more money to avoid a margin call temporarily, increasing size, rinse and repeat until there is nothing left to put in again.

The dream is always the same.

Two scammers above, the latter owns a broker. There is a reason why Ira never puts on a trade: he does not have to take risk or gamble in the market, isn’t there a serious conflict of interest here: if you lose, he wins – as long as you are placing the trades with him.

You have to be really careful about what is an edge in the market. Most things these people would sell you for money does not put your odds above 50%, which is equal to rolling the dice.

There was some “Forex Billionaire” labelef jet on LimbedIn. I should have take a snapshot of it.

Almost anyone whoever claimed to be a Forex Millionaire, never was one.

There is not a single Forex broker that could pay out a Billion Dollars.

Understand the following, becoming a billionaire from forex would be one way only: by owning a brokership. Even then you need a major operation with 10+ countries, preferably a monopoly of sorts (like Interactive Broker has for US stocks in Europe) and ultimately you need to have your own publicly traded stock.

Péterffy Tamás is a Billionaire for being the majority ownner of IG, but they are only in small part dealing with Forex / currency pair derivatives, mostly Futures and Stocks.

The revenue being $2.7 Billion a year does not tell you anything about net profits. If they are smart enough they spend most of the money before taxes.

Talking of Peterffy, look up an interview where he talks about the Flash Crash: he kept telling his crew to “raise the spread”.

That’s the broker’s only real tool, and how effective is it? It renders 95% of the possible automated retail systems non-profitable to break even and the remaining 5% operates with small sizes, no stop losses waiting for the day of the reconing, the margin call.

Try to design a trading system that operates with 1-2 points (0.1-0.2 pips) of spread by default, but can experience a spread going to 340 points (34 pips) not only at the daily balancing, but around any decreased liqidity event.

For me it is not much fun crossing major borders. I always get flagged and searched thoroughly. I make sure not to take compromising stuff, like FBI business cards. Interpol interrogation, DEA and other detainments guarantee the stupidest conversations ever. I.e:
– Are you a sea-man?
– Are you with the crew?

Ira’s Net Wort does not seem to be public. I know a guy personally who owns a Forex Broker in Africa. He does ok, but he is nowhere a Billionaire.

Pudding Test 1

The first thing to understsnd about money low is the ssmple size incompatibility.

30 minute w/ 14 sample is a match made in Devon. 4H w/14 also a very good combo. 1H w/14 is a terrible idea.

My 3rd, actively used signal The 8-ball is Money Flow pedal to metal. Kate, this one would be the easiest to replicate on other platforms, I promise.

mfi[i]<9 or mfi[i]>91

There is that insignificant remark on the right.

The meaning of the 2-color is mostly the S-240 HL2 on the 30-minute or it’s 2-SD displacement, the ground daddy E-712 HL2 (Purple) by itself, but at times the yellow component is the E-64 in combination with another MA.

E32L[i]=iMA(NULL,0,32*2,0,MODE_EMA, PRICE_MEDIAN,i);

As soon as they let go off the pedal that was extended fully, the vehicle slips back to one of the moving average combos, from where there should be at least 46 pips statistically to capture.

Examples:

The next one would clarify the 1x prefix.

The next one was good for 110 pips:

& this one did 97 in one breath:

I just realized that I managed to crop the 8-balls on the last images, but you get the point.

The whole thing was about peppering the S-240 with orders and aiming for 46-100 pips – currently at 1.05557.

I would not sell it at the current price.

Marching Of The Parabolic Snails

Nothing good ever happens for 13 years, but then you find your calling. Play Double Dutch!

There are 2 Money Flow DD’s I have identified so far. One is good for 36 pips, see the added line…

The other one is indefinite, the broken Money Flow wrap around. 10 pips didplacement here as well.

& this is how you turn disadvantages into advantages

I tried so hard & I got so hard…