Dumbest title for a movie ever, virtually impossible to search for.
Fail me once & pounce
in the words of the biggest traitor trader:
Fail me once, fail me… I can’t get failed again.
So I’ve been saying that to trade, you need to be able to count to two. I know, some may think that a Texas Instruments pocket calculator is a must, because it can do square roots, but some say that they are trying to make things look more complicated than they are. Don’t misunderestimate the power of 2.

The blue lines are auto plots. 20+ pips reversals. The gray tail is 17+, but less than 20.
///20 close back upif (Low[i+1]<Low[i+2] && Low[i+1]<iBands(symbol,0,30,2,0,PRICE_MEDIAN,MODE_LOWER,i+1)-50*Point && Close[i]>Low[i+1]+170*Point){ ObjectCreate("Doxx"+IntegerToString(i),OBJ_TREND,0, Time[i+1], Low[i+1], Time[i], Close[i]); if (Close[i]<Low[i+1]+200*Point) {ObjectSet("Doxx"+IntegerToString(i),OBJPROP_COLOR,clrGray); ObjectDelete("Doxx"+IntegerToString(i+1)); } else ObjectSet("Doxx"+IntegerToString(i),OBJPROP_COLOR,clrBlue); ObjectSet("Doxx"+IntegerToString(i),OBJPROP_WIDTH,13); ObjectSet("Doxx"+IntegerToString(i),OBJPROP_RAY_RIGHT,false);} ///20 close back downif (Low[i]<iBands(symbol,0,30,2,0,PRICE_MEDIAN,MODE_UPPER,i)-20*Point &&High[i+1]>High[i+2] && High[i+1]>iBands(symbol,0,30,2,0,PRICE_MEDIAN,MODE_UPPER,i+1)+150*Point && Close[i]<High[i+1]-200*Point){ ObjectCreate("Doxx"+IntegerToString(i),OBJ_TREND,0, Time[i+1], High[i+1], Time[i], Close[i]); ObjectSet("Doxx"+IntegerToString(i),OBJPROP_COLOR,clrBlue); ObjectSet("Doxx"+IntegerToString(i),OBJPROP_WIDTH,13); ObjectSet("Doxx"+IntegerToString(i),OBJPROP_RAY_RIGHT,false);}

Now, let’s introduce sudden reversals with good volatility. 30-minute chart still.
The orange markers are 13+ pip flips. They go untested and stack during a trending phase. Take note of falling short of the current volatility potential represented by the 30-sample BB. They yield two legs each.

The last one yielded 17-pip close backs, as volatility was no longer expanding.
//4-hour high vol surge & reversalif (High[i+1]==iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,8,i+1)) && Close[i+1]<iBands(symbol,0,30,2,0,PRICE_MEDIAN,MODE_UPPER,i+1)&& High[i]<High[i+1] && High[i+1]-Low[i+1]>80*Point && Low[i+1]>iBands(symbol,0,30,2,0,PRICE_MEDIAN,MODE_LOWER,i+1)&& (Close[i+1]<Open[i+1] || (Close[i+1]<High[i+1]-(High[i+1]-Low[i+1])/3*2) )){ ObjectCreate("Fox"+IntegerToString(i),OBJ_TREND,0, Time[i+1], High[i+1], Time[i+1], Low[i+1]); if (High[i+1]-Low[i+1]>130*Point) ObjectSet("Fox"+IntegerToString(i),OBJPROP_COLOR,clrOrangeRed); else ObjectSet("Fox"+IntegerToString(i),OBJPROP_COLOR,clrGold); ObjectSet("Fox"+IntegerToString(i),OBJPROP_WIDTH,13); ObjectSet("Fox"+IntegerToString(i),OBJPROP_RAY_RIGHT,false); ObjectSet("Fox"+IntegerToString(i),OBJPROP_BACK,1);}

There were two gray tails made, plus two scrape levels. That’s a tradeable low. The last orange tails were no Zeros, the last one went outside the 30BB, the one before that got an immediate choke (green counter).
//4-hour high vol surge & reversal
if (High[i+1]==iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,8,i+1)) && Close[i+1]<iBands(symbol,0,30,2,0,PRICE_MEDIAN,MODE_UPPER,i+1)
&& High[i]<High[i+1] && High[i+1]-Low[i+1]>80*Point && Low[i+1]>iBands(symbol,0,30,2,0,PRICE_MEDIAN,MODE_LOWER,i+1)
&& (Close[i+1]<Open[i+1] || (Close[i+1]<High[i+1]-(High[i+1]-Low[i+1])/3*2) )){
ObjectCreate("Fox"+IntegerToString(i),OBJ_TREND,0, Time[i+1], High[i+1], Time[i+1], Low[i+1]);
if (High[i+1]-Low[i+1]>130*Point) ObjectSet("Fox"+IntegerToString(i),OBJPROP_COLOR,clrOrangeRed);
else ObjectSet("Fox"+IntegerToString(i),OBJPROP_COLOR,clrGold);
ObjectSet("Fox"+IntegerToString(i),OBJPROP_WIDTH,13);
ObjectSet("Fox"+IntegerToString(i),OBJPROP_RAY_RIGHT,false);
ObjectSet("Fox"+IntegerToString(i),OBJPROP_BACK,1);
}
//4-hour low vol surge & reversal
if (Low[i+1]==iLow(symbol,0,iLowest(symbol,0,MODE_LOW,8,i+1)) && Close[i+1]>iBands(symbol,0,30,2,0,PRICE_MEDIAN,MODE_LOWER,i+1)
&& Low[i]>Low[i+1] && High[i+1]-Low[i+1]>80*Point && High[i+1]<iBands(symbol,0,30,2,0,PRICE_MEDIAN,MODE_UPPER,i+1)
&& (Close[i+1]>Open[i+1] || (Close[i+1]>Low[i+1]+(High[i+1]-Low[i+1])/3*2) )){
ObjectCreate("Fox"+IntegerToString(i),OBJ_TREND,0, Time[i+1], High[i+1], Time[i+1], Low[i+1]);
if (High[i+1]-Low[i+1]>130*Point) {ObjectSet("Fox"+IntegerToString(i),OBJPROP_COLOR,clrChartreuse);
ObjectCreate("DOGR"+IntegerToString(i),OBJ_TEXT, 0, Time[i+5],Low[i+1]-130*Point);
ObjectSetText("DOGR"+IntegerToString(i),DoubleToStr(NormalizeDouble(Low[i+1]-130*Point,4),4)+" cover till 2nd F/up", 26, "Impact", clrGreen);
}
else ObjectSet("Fox"+IntegerToString(i),OBJPROP_COLOR,clrGold);
ObjectSet("Fox"+IntegerToString(i),OBJPROP_WIDTH,13);
ObjectSet("Fox"+IntegerToString(i),OBJPROP_RAY_RIGHT,false);
ObjectSet("Fox"+IntegerToString(i),OBJPROP_BACK,1);
}
I would suggest looking for a Zero print, falling shy of the last one for a new entry. Since we are off the low by more than 55 pips this could happen anytime between a new 4-hour high and the last Zero at 1.1954.
Overall, a much stronger leg down could take the price to below 1.12.
The rules to play:
Must be born in Trinidad.
Have a populist fascist elected for a second term.
Have him put his name, face, and signature on a golden card (green was for buggers)
For now, America is his own domain.
Let him charge whatever he wants for it, as it all goes into his pocket.
The game starts with the ideology of an empire: get more land, lose all surplus weight, like in a good, hot-air balloon you would.
The possibilities are endless:
for instance, people can get now creamed by ice.
And then the torpedo-lottery starts
At first, the fishermen are allowed to play. Later, extra-large rap divas can join without legal US status.
If you happen to not to get the jackpot (you don't have the cards), then your number is called, and you'd be blown to smithereens.
Smile! The whole world has been upgraded to being part of Trinidad. Now, everyone plays whether they want to or not.
All hail the almighty god of Trinidad!
Embrace,
It looks like a new beginning
But has the same old ending
Enjoy the view
& accept the review
Face to the interface
No fear
We have no atmosphere
Being bold as a king
Is a thing
Door's closing
Sheep's clothing
Chicken albedo
Sting, you are wasting your time
Broke the rules
& broke some skulls too
Don't worry
Be extra happy now
This was't meant to be
You weren't meant to see
The president of Benchmark
The names have been changed to protect the inner sounds
Get undressed, you'll see
You won't ever get fully embarrassed
[Chorus]
I"m loving Venezuela
They are talking to me too
Don't cry for me South America
I'll be coming for the rest of you
The emperor has new floats
The Village Idiot does his little turn
By Air Force One
To the tune of Vanilla Ice
The first president-crypto-pedo-thug-baby
Is in need of a hug and more thugs
Plus someone else's peace prize
Between two bombings
What has happened to the neck? The giraffe has failed the cognitive test. Boy, camera, TV, and sonic weapon for mass killings Did you say cognitive test? Suck on this collective breast A big green land covered with ice, Ready for export? Iceland! Nato Alliance? Should have bought Allianz insurance! Third Reich During the third term. Mr & Mrs Messerschmitt Wake me up before you bomb-bomb Wave goodbye to the mother of all Pink Floyds Giving a madman nuclear access codes EQUALS to entrusting the goat with the cabbage Nothing to see here Nothing to eat here Meanwhile, the orange supremist Is taking a dump on a golden toilet Tweeting out phrases of self-praises, insults, and demands Like a low-life full-time bully does... A wannabe dictator Narcissist megalomaniac Male chauvinist, racist Spoiled brat People, don't forget to take off his head! [Chorus] Here's his life in pictures From being a teen to raping teens To raping everyone else And here's the guillotine The savings have been enormous since... On the paint alone! Here's his life's work Purely damages Hat on and head off It is hard to deal with idiots But at least they are easy to spot There's nothing masculine about mass killings Insults don't replace the insulin Red label Millions of lives crippled, Damaged, families torn apart Hundreds of thousands killed By denying them access to clean water Medicine, food, shelter But at least the billionaire oligarch buddies Would get to round up their unspendable Wealth up a bit more So there is your trade-off Remember when the felon married to an immigrant Told you that the problems were felons and immigrants? [Chorus] Here's his life in pictures From being a teen to raping teens To raping everyone else And here's the guillotine The savings have been enormous since... On the paint alone!