Trettiofyra

All you can do is evolve. Find more statistically relevant data.

Make notes, i.e:

Triple F batch -> F2-... -> F2++ to F3-
Triple F can turn into more by consolidating around the S356.
Embedded Dynamite (money flow oversold) -> W3c / Safety Breach Target.



First the throw off.
Notice how the Impulse Waves all end up stepping outside the Window Envelope (Blue Lines), whilst the corrections fall short of it by 15-25 pips (Black Arrows).

Price turned where a corrective eave would, yet I think this is a Wave 4 up.

Now, here comes statistical knowledge. Once the Safety Line is hot and gets breached, the maximum expectation would be around 34 pips extra.

This is the 1.4 version of the Axel S., no more free updates beyond V1.3.

There is always a condition and a level on any given day. In our case the W3 close end (1.0837) coincided with the Safety Set Back level.

The condition can be a Triple F Batch. Three Green F-s are a Go Long At Market.

The target on the first leg up was F3 minus or 1.0784 at the time, for that was 90 pips away from the 200-sample low.

We are currently missing the third F & the money flow situation has plotted a new reversal zone.

2xBuy: 1.0870, cover: 1.0906 2.8x stretch -> E9
Sell Beats: 1.0846, 1.0852, shy of 1.0860

Rubbish left untrained can cause you wanting to go to Cancún.

Pandora’s Fox

Been looking for that 2.8x stretch for the end of the wave, remember?

I found another stretch (span) to pay attention to. The safety line (2.8 / 0.28) and S-356 need to be further apart than 2 fluctuation sizes, 64 pips.

Ain’t the case currently.

     
if (High[i]>AxelU[i] && iMA(symbol,0,356,0,MODE_SMA,PRICE_MEDIAN,i)>AxelU[i] && iMA(symbol,0,356,0,MODE_SMA,PRICE_MEDIAN,i)-AxelU[i]>640*Point)
{
ObjectCreate("Fox"+IntegerToString(i), OBJ_TEXT, 0, Time[i], AxelU1[i]+150*Point);
ObjectSetText("Fox"+IntegerToString(i), CharToStr(101), 46, "Webdings", Magenta);
}

if (Low[i]<AxelL[i] && iMA(symbol,0,356,0,MODE_SMA,PRICE_MEDIAN,i)<AxelL[i] && AxelL[i]-iMA(symbol,0,356,0,MODE_SMA,PRICE_MEDIAN,i)>640*Point)
{
ObjectCreate("Fox"+IntegerToString(i), OBJ_TEXT, 0, Time[i], AxelL2[i]-50*Point);
ObjectSetText("Fox"+IntegerToString(i), CharToStr(101), 46, "Webdings", Magenta);
}

SpinDizzy

It’s only debt that you and I paying…

What better time to discuss more about the spinners, when you have 3 back to back.

Those 3 money flow extremes without the stochastic pushing deeply overbought levels.

The first spin was the deepest.

The spins have a rersistance, a support level and a Mid Line.

The second spinner was utilized for a Break & Close failure

The third spinner was utilized for a Break Out failure

Now it is about the first spinner. We are waiting for the close back below 1.0776 to start hitting it with volume… and the wait is up.

Another Break & Close failure. Plots of the Tie Machine for $99.

   if (mfi[i]<mfi[i+1] && mfi[i+2]<mfi[i+1] && mfi[i+1]>79 && iStochastic(symbol,0,120,3,3,MODE_SMA,PRICE_MEDIAN,MODE_MAIN,i)>72 && iStochastic(symbol,0,120,3,3,MODE_SMA,PRICE_MEDIAN,MODE_MAIN,i)<92 && mfi[ArrayMaximum(mfi,3,i)]>mfi[ArrayMaximum(mfi,23,i+3)] 
){

ObjectCreate("RayTX"+IntegerToString(i),OBJ_TREND,0, Time[i+1], iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,8,i)), Time[i+6], iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,8,i)), Time[i]);
ObjectSet("RayTX"+IntegerToString(i),OBJPROP_COLOR,clrTeal);
ObjectSet("RayTX"+IntegerToString(i),OBJPROP_RAY_RIGHT,false);
ObjectSet("RayTX"+IntegerToString(i),OBJPROP_WIDTH,5);

ObjectCreate("RayTXLX"+IntegerToString(i), OBJ_TEXT, 0, Time[i+15], iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,8,i))+40*Point);
ObjectSetText("RayTXLX"+IntegerToString(i), "Res = "+DoubleToString(NormalizeDouble(iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,8,i)),4),4), 12, "Arial Black", Teal);


ObjectCreate("RayT2X"+IntegerToString(i),OBJ_TREND,0, Time[i+1], iLow(symbol,0,iLowest(symbol,0,MODE_LOW,2,i+1)), Time[i+6], iLow(symbol,0,iLowest(symbol,0,MODE_LOW,2,i+1)), Time[i]);
ObjectSet("RayT2X"+IntegerToString(i),OBJPROP_COLOR,clrDeepPink);
ObjectSet("RayT2X"+IntegerToString(i),OBJPROP_RAY_RIGHT,false);
ObjectSet("RayT2X"+IntegerToString(i),OBJPROP_WIDTH,5);


ObjectCreate("RayT2XLX"+IntegerToString(i), OBJ_TEXT, 0, Time[i+15], iLow(symbol,0,iLowest(symbol,0,MODE_LOW,2,i+1))+10*Point);
ObjectSetText("RayT2XLX"+IntegerToString(i), "Sup = "+DoubleToString(NormalizeDouble(iLow(symbol,0,iLowest(symbol,0,MODE_LOW,2,i+1)),4),4), 12, "Arial Black", DeepPink);


ObjectCreate("RayT2XLY"+IntegerToString(i), OBJ_TEXT, 0, Time[i+15], (iLow(symbol,0,iLowest(symbol,0,MODE_LOW,2,i+1))+iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,8,i)))/2+20*Point);
ObjectSetText("RayT2XLY"+IntegerToString(i), "Mid = "+DoubleToString(NormalizeDouble((iLow(symbol,0,iLowest(symbol,0,MODE_LOW,2,i+1))+iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,8,i)))/2,4),4), 12, "Arial Black", Blue);


k=i-3;
while (k>0){
if (High[k]>iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,8,i))+20*Point) break;
k--;
}

if (k>0)
j=k-1;
while (j>0){
if (Close[j]<(iLow(symbol,0,iLowest(symbol,0,MODE_LOW,8,i+1))+iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,2,i)))/2) break;
j--;
}
if (k>0 && k>i-50 && j>0 && Close[j]<(iLow(symbol,0,iLowest(symbol,0,MODE_LOW,8,i+1))+iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,2,i)))/2){
ObjectCreate("RayT2XLYY"+IntegerToString(j), OBJ_TEXT, 0, Time[j+10], (iLow(symbol,0,iLowest(symbol,0,MODE_LOW,8,i+1))+iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,2,i)))/2+90*Point);
ObjectSetText("RayT2XLYY"+IntegerToString(j), "Break Out Failure! "+i, 12, "Arial Black", Crimson);
if (Close[k]>iHigh(symbol,0,iHighest(symbol,0,MODE_HIGH,8,i))+20*Point) ObjectSetText("RayT2XLYY"+IntegerToString(j), "Break&Close Failure! "+i, 16, "Arial Black", Crimson);
if (j<i-50) ObjectSetText("RayT2XLYY"+IntegerToString(j), "Spinner Back Test! "+i, 16, "Arial Black", Blue);
}


}

Take a monet to appreciate the back test of the S-356 CSI and tell me how bullish is that.

3F Club

Every day there’s a choice between making $100 and $3000.

3 Full Discharges = holdings dumped, the market has just gone from one sided to almost balanced.

After a 3F, the minimum move would be F2-, or in our case 1.0752.

Since the market went from qualified bear to unqualified, the sell zone became F2++ to F3-, namely 1.0767 to 1.0784. The high was 1.07845.

Had I picked up 5 lots naked (7.3 total) around 1.0707 at market, a 73 pips travel to1.0780 would have meant $5329 minus commission. It is very expensive to be a pussy.

Frank Farian may be gone, but his ideas live on.

The spinner is in place.

Passing Some Gas

This is the world seen through flatulence.

It isn’t only in space where bursting out in gas may be dangerous.

When we travelled to KRK, my friend’s father used to tell over and over the same stories. One I had to listen to was about a deep sea welder, whom dropped a cross below his 65m work site to bless it. He was overwheight and once he farted down below and his led belt fell off catapulting him upwards without brakes. You can guess the rest.

On the other hand, I kept you well informed sparing the guessing. I told you we were gunning for the Cyan triangle / Blue Line combo. We still are.

There was never an “if price wants to go up” / “if price was to go down.”

I kept you on the cue.

Does this look like a low to you w/o RSI2 going low enough to facilitate a turn? It looks more like a back test of that descending channel before a major drop.

This was a “loneliness” correction, lasting 16 hours. The orange box was a consolidation, but not a correction. There is a difference: a correction would at a minimum make it to the S30 / E32 within 16 hours.

The triple F bounce is coming to an end at the OBI.

What’s in the scope? Thanks to the lots of sideways movement, 1.0574-1.0564 is now visible.

In space no one can hear you fart.

CF62 – Abductable Market

In this world only death, taxes and the possibility of an abduction are certain.

An abductable market is where the counter directional volatility (200 sample, 30 min) does not reach 40 pips (crack 4, yellow sicks).

In an abductable market, play a Crack 3 re-capture (1st close back above 30 min S30 – Play 2x size, take 10.pips) and Crack Zero recaps. Crack Zero also requires a close back above the 8 EMO get in on a relapse to the BB. Play 2x size, target opposing 60-min BB plus 5 more pips.
Repeat until a Crack 4 prints.

I bet you did not know how reclaiming actually worked. I did not either util today.

The first play with10 lots would have yielded 1000-60= $940,

the second would have made cca 2400-144= $2256 net.

This is why this free blog and a $99 indicator may just be the best investment you could ever make towards uncapped income.

The hands appear in a protected market upon price approaching the S30. Sort of a hands up for either volatility crack coming or a potential re-capture. I ended up using an alien head for warning for the potential Alien Abduction.

12 slinky dinky pinkies = abduction danger is on.

There are bad aliens on both sides.

I did not play these trades, only later did I manag to put together what I saw on twitter, which was playing 10 pips with 10 lots (on a fully funded demo account) and the idea of protection. Things are seriously looking up now. I’m holding 4-5 lots shorts anyway, so picking up 10 lots in the opposite direction would be a very smart move (5-6 lots naked) if I had a way to guarantee a 10+ pip move. I also have CODE 63 made as part of my auto-targeter routine, which aims for the upper 60-min 30-sample BB when using 0.63 for stop loss and for the lower one and another 5 pips with a stop loss code of 6.3

I may just end up switching to a pro account for a lower spread instead of becoming an IB.

Auto Trading has to be on to run the following Expert, and you must attach it to the ticker you trade. For intance, I trade EURUSD+ which is the raw spread, whilst I do my charting is done on EURUSD which is the “fixed spread”. This way I don’t end up adjusting targets and stop losses by accidentally dragging an existing trade with the pointer. I always choose 30-minute basis.

Trail Stop Only LT Modified

Trail Stops:

Code 11: (Stop loss: 11 / 0.11) RSI2 sensitive protective stop loss, locks in 4 pips of profits when the RSI2 reading (30 mins) above 80 or below 20

Code 2: (Stop loss: 2 / 0.2) locks in 1.5 pips after going 8 pips into gains, 3 pips after 8 in gains.

Code 3: ( Stop loss: 3 / 0.3) locks in 64 pips after being 64+ in gains.

Code 333: (Take Profit: 3.33 / 0.333) adjusts the stop loss 10-pips closer than the most recent (35 count) furthest 30-minute 30-sample BB HL2 in the opposing direction (slow motion vehicle)

Targeters:

Code 4: (Stop loss: 4 / 0.4) 8-sample 4HR low + 40 pip or 4Hr high – 40 pip tartgets

Code 44: (Stop loss: 4.4 / 0.44) targets the hourly E-44 of closes.

Code 77: (Stop loss: 7.7 / 0.77) looks up the last 15-minute fractal and targets 70 pips from that swing point.

Code 5: (Stop loss: 5 / 0.5) targets the hourly E-16 of closes.

Code 6: (Stop loss: 6 / 0.6) targets the hourly E-32 of closes.

Code 7: (Stop loss: 7 / 0.7) targets the hourly E-72 band (E-72 of Highs from below, E-72 of Lows from above)

Code 63: (Stop loss: 6.3 / 0.63) targets 5 pips beyond the hourly 30-sample BB (HL2)

Code 33: (Stop loss: 3.3 / 0.33) targets 5 pips beyond the 30-minute 30-sample BB (HL2)

Code 8: (Stop loss: 8 / 0.8) targets the 30-minute 8-EMO

Code 9: (Stop loss: 9 / 0.9) targets the 60-minute E-89 Highs from below, E-89 of Lows from above)

Code 26: (Stop loss: 2.6 / 0.26) targets the 30-minute 17-EMO plus / minus 26 pips

Code 52: (Stop loss: 5.2 / 0.52) targets the 30-minute 17-EMO plus / minus 52 pips

Code 78: (Stop loss: 7.8 / 0.78) targets the 30-minute 17-EMO plus / minus 78 pips

Code 48: (Stop loss: 4.8 / 0.48) targets the 4-HR 8-EMO

Code 430: (Stop loss: 4.3 / 0.43) targets 5 pips beyond the 4HR 30-sample BB (HL2)

Code 432: (Stop loss: 4.32 / 0.432) targetst he 4-HR E-32 HL2

Code 45: (Stop loss: 4.5 / 0.45) targets the 30-minute E-32 HL2 plus / minus 45 pips (stratosphere)

Code 87: (Stop loss: 8.7 / 0.78) targets the 30-minute E-32 HL2 plus / minus 87 pips (ionosphere)

“Everything else is effin nonsense” TradeDeMark of RagDollio.

Donations are welcome to: macdulio@yahoo.com

Now that I have let multiple cats out of the bag, there’s no going back.

Croppers (too many to write a list):

 ///// Crop continuation long (95)

if( OrderType()==OP_BUY && (OrderStopLoss()==0.05 || OrderTakeProfit()==95) && OrderMagicNumber()!=50 && OrderMagicNumber()!=51 && OrderMagicNumber()!=52 && OrderMagicNumber()!=53 && OrderMagicNumber()!=54 && OrderProfit()>0 &&
RSI2[0]>95 && Bid>OrderOpenPrice()+.50*Point && OrderProfit()+OrderSwap()+OrderCommission()>0)
{OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_BID), 5, Red );
Print("RSI Cropper Closed LONG @ "+MarketInfo(OrderSymbol(), MODE_BID)+" for ", OrderProfit());}

///// Crop continuation short (0.05)

if( OrderType()==OP_SELL && (OrderStopLoss()==95 || OrderTakeProfit()==0.05) && OrderMagicNumber()!=50 && OrderMagicNumber()!=51 && OrderMagicNumber()!=52 && OrderMagicNumber()!=53 && OrderMagicNumber()!=54 && OrderProfit()>0 &&
RSI2[0]<5 && Ask<OrderOpenPrice()-.50*Point && OrderProfit()+OrderSwap()+OrderCommission()>0)
{OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_ASK), 5, Red );
Print("RSI Cropper Closed SHORT @ "+MarketInfo(OrderSymbol(), MODE_ASK)+" for ", OrderProfit());}


///// Crop 0.03 long (BB30 UPPER)

if( OrderType()==OP_BUY && (OrderStopLoss()==0.03 || OrderTakeProfit()==30.00) && OrderMagicNumber()!=50 && OrderMagicNumber()!=51 && OrderMagicNumber()!=52 && OrderMagicNumber()!=53 && OrderMagicNumber()!=54 && OrderProfit()>0 &&
Close[0]>iBands(symbol,60,30,2,0,PRICE_MEDIAN,MODE_UPPER,0) && Bid>OrderOpenPrice()+.50*Point && OrderProfit()+OrderSwap()+OrderCommission()>0)
{OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_BID), 5, Red );
Print("Cropper Closed LONG @ "+MarketInfo(OrderSymbol(), MODE_BID)+" for ", OrderProfit());}

///// Crop 30.0 short (BB30 LOWER)

if( OrderType()==OP_SELL && (OrderStopLoss()==30.0 || OrderTakeProfit()==0.03) && OrderMagicNumber()!=50 && OrderMagicNumber()!=51 && OrderMagicNumber()!=52 && OrderMagicNumber()!=53 && OrderMagicNumber()!=54 && OrderProfit()>0 &&
Close[0]<iBands(symbol,60,30,2,0,PRICE_MEDIAN,MODE_LOWER,0) && Ask<OrderOpenPrice()-.50*Point && OrderProfit()+OrderSwap()+OrderCommission()>0)
{OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_ASK), 5, Red );
Print("Cropper Closed SHORT @ "+MarketInfo(OrderSymbol(), MODE_ASK)+" for ", OrderProfit());}




///// Crop 0.216 long (BB216 main)

if( OrderType()==OP_BUY && (OrderStopLoss()==0.216 || OrderTakeProfit()==2.16) && OrderMagicNumber()!=50 && OrderMagicNumber()!=51 && OrderMagicNumber()!=52 && OrderMagicNumber()!=53 && OrderMagicNumber()!=54 && OrderProfit()>0 &&
Close[0]>iBands(symbol,5,216,2.5,0,PRICE_MEDIAN,MODE_MAIN,0) && Bid>OrderOpenPrice()+.50*Point && OrderProfit()+OrderSwap()+OrderCommission()>0)
{OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_BID), 5, Red );
Print("Cropper Closed LONG @ "+MarketInfo(OrderSymbol(), MODE_BID)+" for ", OrderProfit());}

///// Crop 2.16 short (BB216 main)

if( OrderType()==OP_SELL && (OrderStopLoss()==2.16 || OrderTakeProfit()==0.216) && OrderMagicNumber()!=50 && OrderMagicNumber()!=51 && OrderMagicNumber()!=52 && OrderMagicNumber()!=53 && OrderMagicNumber()!=54 && OrderProfit()>0 &&
Close[0]<iBands(symbol,5,216,2.5,0,PRICE_MEDIAN,MODE_MAIN,0) && Ask<OrderOpenPrice()-.50*Point && OrderProfit()+OrderSwap()+OrderCommission()>0)
{OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_ASK), 5, Red );
Print("Cropper Closed SHORT @ "+MarketInfo(OrderSymbol(), MODE_ASK)+" for ", OrderProfit());}


///// Crop 0.246 long (above BB216&BB30)

if( OrderType()==OP_BUY && (OrderStopLoss()==0.246 || OrderTakeProfit()==2.46) && OrderMagicNumber()!=50 && OrderMagicNumber()!=51 && OrderMagicNumber()!=52 && OrderMagicNumber()!=53 && OrderMagicNumber()!=54 && OrderProfit()>0 &&
Close[0]>iBands(symbol,5,216,2.5,0,PRICE_MEDIAN,MODE_UPPER,0) && Close[0]>iBands(symbol,5,30,2,0,PRICE_MEDIAN,MODE_UPPER,0) && Bid>OrderOpenPrice()+.50*Point && OrderProfit()+OrderSwap()+OrderCommission()>0)
{OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_BID), 5, Red );
Print("Cropper Closed LONG @ "+MarketInfo(OrderSymbol(), MODE_BID)+" for ", OrderProfit());}

///// Crop 2.46 short (below BB216&BB30)

if( OrderType()==OP_SELL && (OrderStopLoss()==2.46 || OrderTakeProfit()==0.246) && OrderMagicNumber()!=50 && OrderMagicNumber()!=51 && OrderMagicNumber()!=52 && OrderMagicNumber()!=53 && OrderMagicNumber()!=54 && OrderProfit()>0 &&
Close[0]<iBands(symbol,5,216,2.5,0,PRICE_MEDIAN,MODE_LOWER,0) && Close[0]<iBands(symbol,5,30,2,0,PRICE_MEDIAN,MODE_LOWER,0) && Ask<OrderOpenPrice()-.50*Point && OrderProfit()+OrderSwap()+OrderCommission()>0)
{OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_ASK), 5, Red );
Print("Cropper Closed SHORT @ "+MarketInfo(OrderSymbol(), MODE_ASK)+" for ", OrderProfit());}






///// Crop 0.214 long (Window Envelope @ 2std.)

if( OrderType()==OP_BUY && (OrderStopLoss()==0.214 || OrderTakeProfit()==2.14) && OrderMagicNumber()!=50 && OrderMagicNumber()!=51 && OrderMagicNumber()!=52 && OrderMagicNumber()!=53 && OrderMagicNumber()!=54 && OrderProfit()>0 &&
Close[0]>iEnvelopes(symbol,10080,14,0,0,0,2,MODE_UPPER,0) && Bid>OrderOpenPrice()+.50*Point && OrderProfit()+OrderSwap()+OrderCommission()>0)
{OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_BID), 5, Red );
Print("Cropper Closed LONG @ "+MarketInfo(OrderSymbol(), MODE_BID)+" for ", OrderProfit());}

///// Crop 2.14 short (Window Envelope @ 2std.)

if( OrderType()==OP_SELL && (OrderStopLoss()==2.14 || OrderTakeProfit()==0.214) && OrderMagicNumber()!=50 && OrderMagicNumber()!=51 && OrderMagicNumber()!=52 && OrderMagicNumber()!=53 && OrderMagicNumber()!=54 && OrderProfit()>0 &&
Close[0]<iEnvelopes(symbol,10080,14,0,0,0,2,MODE_LOWER,0) && Ask<OrderOpenPrice()-.50*Point && OrderProfit()+OrderSwap()+OrderCommission()>0)
{OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_ASK), 5, Red );
Print("Cropper Closed SHORT @ "+MarketInfo(OrderSymbol(), MODE_ASK)+" for ", OrderProfit());}



///// Crop 0.314 long (Window Envelope @ 3.5 std.)

if( OrderType()==OP_BUY && (OrderStopLoss()==0.314 || OrderTakeProfit()==3.14) && OrderMagicNumber()!=50 && OrderMagicNumber()!=51 && OrderMagicNumber()!=52 && OrderMagicNumber()!=53 && OrderMagicNumber()!=54 && OrderProfit()>0 &&
Close[0]>iEnvelopes(symbol,10080,14,0,0,0,3.5,MODE_UPPER,0) && Bid>OrderOpenPrice()+.50*Point && OrderProfit()+OrderSwap()+OrderCommission()>0)
{OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_BID), 5, Red );
Print("Cropper Closed LONG @ "+MarketInfo(OrderSymbol(), MODE_BID)+" for ", OrderProfit());}

///// Crop 3.14 short (Window Envelope @ 3.5 std.)

if( OrderType()==OP_SELL && (OrderStopLoss()==3.14 || OrderTakeProfit()==0.314) && OrderMagicNumber()!=50 && OrderMagicNumber()!=51 && OrderMagicNumber()!=52 && OrderMagicNumber()!=53 && OrderMagicNumber()!=54 && OrderProfit()>0 &&
Close[0]<iEnvelopes(symbol,10080,14,0,0,0,3.5,MODE_LOWER,0) && Ask<OrderOpenPrice()-.50*Point && OrderProfit()+OrderSwap()+OrderCommission()>0)
{OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_ASK), 5, Red );
Print("Cropper Closed SHORT @ "+MarketInfo(OrderSymbol(), MODE_ASK)+" for ", OrderProfit());}






///// Crop 0.28 long (E32+28Pips)

if( OrderType()==OP_BUY && (OrderStopLoss()==0.28 || OrderTakeProfit()==2.8) && OrderMagicNumber()!=50 && OrderMagicNumber()!=51 && OrderMagicNumber()!=52 && OrderMagicNumber()!=53 && OrderMagicNumber()!=54 && OrderProfit()>0 &&
Close[0]>iMA(NULL,60,32,0,MODE_EMA, PRICE_MEDIAN,0)+280*Point && Bid>OrderOpenPrice()+.50*Point && OrderProfit()+OrderSwap()+OrderCommission()>0)
{OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_BID), 5, Red );
Print("Cropper Closed LONG @ "+MarketInfo(OrderSymbol(), MODE_BID)+" for ", OrderProfit());}

///// Crop 2.8 short (E32-28Pips)

if( OrderType()==OP_SELL && (OrderStopLoss()==2.8 || OrderTakeProfit()==0.28) && OrderMagicNumber()!=50 && OrderMagicNumber()!=51 && OrderMagicNumber()!=52 && OrderMagicNumber()!=53 && OrderMagicNumber()!=54 && OrderProfit()>0 &&
Close[0]<iMA(NULL,60,32,0,MODE_EMA, PRICE_MEDIAN,0)-280*Point && Ask<OrderOpenPrice()-.50*Point && OrderProfit()+OrderSwap()+OrderCommission()>0)
{OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_ASK), 5, Red );
Print("Cropper Closed SHORT @ "+MarketInfo(OrderSymbol(), MODE_ASK)+" for ", OrderProfit());}


///// Crop 0.38 long (E32+38Pips)

if( OrderType()==OP_BUY && (OrderStopLoss()==0.38 || OrderTakeProfit()==3.8) && OrderMagicNumber()!=50 && OrderMagicNumber()!=51 && OrderMagicNumber()!=52 && OrderMagicNumber()!=53 && OrderMagicNumber()!=54 && OrderProfit()>0 &&
Close[0]>iMA(NULL,60,32,0,MODE_EMA, PRICE_MEDIAN,0)+380*Point && Bid>OrderOpenPrice()+.50*Point && OrderProfit()+OrderSwap()+OrderCommission()>0)
{OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_BID), 5, Red );
Print("Cropper Closed LONG @ "+MarketInfo(OrderSymbol(), MODE_BID)+" for ", OrderProfit());}

///// Crop 3.8 short (E32-38Pips)

if( OrderType()==OP_SELL && (OrderStopLoss()==3.8 || OrderTakeProfit()==0.38) && OrderMagicNumber()!=50 && OrderMagicNumber()!=51 && OrderMagicNumber()!=52 && OrderMagicNumber()!=53 && OrderMagicNumber()!=54 && OrderProfit()>0 &&
Close[0]<iMA(NULL,60,32,0,MODE_EMA, PRICE_MEDIAN,0)-380*Point && Ask<OrderOpenPrice()-.50*Point && OrderProfit()+OrderSwap()+OrderCommission()>0)
{OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_ASK), 5, Red );
Print("Cropper Closed SHORT @ "+MarketInfo(OrderSymbol(), MODE_ASK)+" for ", OrderProfit());}



///// Crop 0.59 long (E32+59Pips)

if( OrderType()==OP_BUY && (OrderStopLoss()==0.59 || OrderTakeProfit()==5.9) && OrderMagicNumber()!=50 && OrderMagicNumber()!=51 && OrderMagicNumber()!=52 && OrderMagicNumber()!=53 && OrderMagicNumber()!=54 && OrderProfit()>0 &&
Close[0]>iMA(NULL,60,32,0,MODE_EMA, PRICE_MEDIAN,0)+590*Point && Bid>OrderOpenPrice()+.50*Point && OrderProfit()+OrderSwap()+OrderCommission()>0)
{OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_BID), 5, Red );
Print("Cropper Closed LONG @ "+MarketInfo(OrderSymbol(), MODE_BID)+" for ", OrderProfit());}

///// Crop 5.9 short (E32-59Pips)

if( OrderType()==OP_SELL && (OrderStopLoss()==5.9 || OrderTakeProfit()==0.59) && OrderMagicNumber()!=50 && OrderMagicNumber()!=51 && OrderMagicNumber()!=52 && OrderMagicNumber()!=53 && OrderMagicNumber()!=54 && OrderProfit()>0 &&
Close[0]<iMA(NULL,60,32,0,MODE_EMA, PRICE_MEDIAN,0)-590*Point && Ask<OrderOpenPrice()-.50*Point && OrderProfit()+OrderSwap()+OrderCommission()>0)
{OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_ASK), 5, Red );
Print("Cropper Closed SHORT @ "+MarketInfo(OrderSymbol(), MODE_ASK)+" for ", OrderProfit());}





///// Crop 0.47 long (E16+47Pips)

if( OrderType()==OP_BUY && (OrderStopLoss()==0.47 || OrderTakeProfit()==4.7) && OrderMagicNumber()!=50 && OrderMagicNumber()!=51 && OrderMagicNumber()!=52 && OrderMagicNumber()!=53 && OrderMagicNumber()!=54 && OrderProfit()>0 &&
Close[0]>iMA(NULL,60,16,0,MODE_EMA, PRICE_MEDIAN,0)+470*Point && Bid>OrderOpenPrice()+.50*Point && OrderProfit()+OrderSwap()+OrderCommission()>0)
{OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_BID), 5, Red );
Print("Cropper Closed LONG @ "+MarketInfo(OrderSymbol(), MODE_BID)+" for ", OrderProfit());}

///// Crop 4.7 short (E16-47Pips)

if( OrderType()==OP_SELL && (OrderStopLoss()==4.7 || OrderTakeProfit()==0.47) && OrderMagicNumber()!=50 && OrderMagicNumber()!=51 && OrderMagicNumber()!=52 && OrderMagicNumber()!=53 && OrderMagicNumber()!=54 && OrderProfit()>0 &&
Close[0]<iMA(NULL,60,16,0,MODE_EMA, PRICE_MEDIAN,0)-470*Point && Ask<OrderOpenPrice()-.50*Point && OrderProfit()+OrderSwap()+OrderCommission()>0)
{OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_ASK), 5, Red );
Print("Goldilocks Cropper Closed SHORT @ "+MarketInfo(OrderSymbol(), MODE_ASK)+" for ", OrderProfit());}



///// Crop 0.88 GOLDILOCKS

if( OrderType()==OP_BUY && (OrderStopLoss()==0.88 || OrderTakeProfit()==88) && OrderMagicNumber()!=50 && OrderMagicNumber()!=51 && OrderMagicNumber()!=52 && OrderMagicNumber()!=53 && OrderMagicNumber()!=54 && OrderProfit()>0 &&
Close[0]>glup && Bid>OrderOpenPrice()+.50*Point && OrderProfit()+OrderSwap()+OrderCommission()>0)
{OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_BID), 5, Red );
Print("Cropper Closed LONG @ "+MarketInfo(OrderSymbol(), MODE_BID)+" for ", OrderProfit());}

///// Crop 88 BB GOLDILOCKS

if( OrderType()==OP_SELL && (OrderStopLoss()==88 || OrderTakeProfit()==0.88) && OrderMagicNumber()!=50 && OrderMagicNumber()!=51 && OrderMagicNumber()!=52 && OrderMagicNumber()!=53 && OrderMagicNumber()!=54 && OrderProfit()>0 &&
Close[0]<gldown && Ask<OrderOpenPrice()-.50*Point && OrderProfit()+OrderSwap()+OrderCommission()>0)
{OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_ASK), 5, Red );
Print("Goldilocks Cropper Closed SHORT @ "+MarketInfo(OrderSymbol(), MODE_ASK)+" for ", OrderProfit());}




///// Crop 0.99 long (numbers target RSI)

if( OrderType()==OP_BUY && (OrderStopLoss()==0.99 || OrderTakeProfit()==99) && OrderMagicNumber()!=50 && OrderMagicNumber()!=51 && OrderMagicNumber()!=52 && OrderMagicNumber()!=53 && OrderMagicNumber()!=54 && OrderProfit()>0 &&
iRSI(symbol,60,2,PRICE_MEDIAN,0)>82 && Bid>OrderOpenPrice()+.50*Point && OrderProfit()+OrderSwap()+OrderCommission()>0)
{OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_BID), 5, Red );
Print("Cropper Closed LONG @ "+MarketInfo(OrderSymbol(), MODE_BID)+" for ", OrderProfit());}

///// Crop 99 short (numbers target RSI)

if( OrderType()==OP_SELL && (OrderStopLoss()==99 || OrderTakeProfit()==0.99) && OrderMagicNumber()!=50 && OrderMagicNumber()!=51 && OrderMagicNumber()!=52 && OrderMagicNumber()!=53 && OrderMagicNumber()!=54 && OrderProfit()>0 &&
iRSI(symbol,60,2,PRICE_MEDIAN,0)<18 && Ask<OrderOpenPrice()-.50*Point && OrderProfit()+OrderSwap()+OrderCommission()>0)
{OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_ASK), 5, Red );
Print("Cropper Closed SHORT @ "+MarketInfo(OrderSymbol(), MODE_ASK)+" for ", OrderProfit());}


///// Crop 0.94 long (stochastic)

if( OrderType()==OP_BUY && (OrderStopLoss()==0.94 || OrderTakeProfit()==94) && OrderMagicNumber()!=50 && OrderMagicNumber()!=51 && OrderMagicNumber()!=52 && OrderMagicNumber()!=53 && OrderMagicNumber()!=54 && OrderProfit()>0 &&
iStochastic(symbol,60,60,3,3,MODE_SMA,0,MODE_SIGNAL,0)>94 && Bid>OrderOpenPrice()+.50*Point && OrderProfit()+OrderSwap()+OrderCommission()>0)
{OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_BID), 5, Red );
Print("Stoch Cropper Closed LONG @ "+MarketInfo(OrderSymbol(), MODE_BID)+" for ", OrderProfit());}

///// Crop 94 short (stochastic)

if( OrderType()==OP_SELL && (OrderStopLoss()==94 || OrderTakeProfit()==0.94) && OrderMagicNumber()!=50 && OrderMagicNumber()!=51 && OrderMagicNumber()!=52 && OrderMagicNumber()!=53 && OrderMagicNumber()!=54 && OrderProfit()>0 &&
iStochastic(symbol,60,60,3,3,MODE_SMA,0,MODE_SIGNAL,0)<9.4 && Ask<OrderOpenPrice()-.50*Point && OrderProfit()+OrderSwap()+OrderCommission()>0)
{OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_ASK), 5, Red );
Print("Stoch Cropper Closed SHORT @ "+MarketInfo(OrderSymbol(), MODE_ASK)+" for ", OrderProfit());}

MFI w/ Municipal Royale

A new plot that lifts my _MFI indicator into the $99 payment clouds.

Final Divergences and Crown Royales were its domains, and now there is a Municipal Royale print that is a reminder for the next counter move would make it beyond the Municipal Trench. A guaranteed long / short that is worth its price in OrangeRed. It also adjusts the final divergence line’s color to Purple to point out the purple block below, on the CounterForce62.

if ((High[i]-iLow(symbol,0,iLowest(symbol,0,MODE_LOW,199,i+1))*10000)>95){
ObjectSet("120BPMMM"+IntegerToString(i),OBJPROP_COLOR,clrPurple);
ObjectCreate("120BMPXX"+IntegerToString(i), OBJ_TEXT, 0, Time[i], High[i]+10*Point);
ObjectSetText("120BMPXX"+IntegerToString(i), CharToStr(175), 68, "Wingdings", clrOrangeRed);
}

Other than the divergences, the following snapshot shows most of the _MFI’s plots.

It keeps tracks of regression and progression highs & lows and numbers them figuring resistance and support levels on the way (spells out the last ones in the indicator window #2). In the same indicator window there’s a directional logic print and some action clues, i.e.: Sell Close To 1.0772, Buy Close to 1.0742.

Being an MFI, the shaded humps are a 14-sample Money Flow. On the main window there are shaded Money Flow interaction boxes plotted. The yellow lines are the current range with a bit allowance. The small black arrows are calling attention to a move that is going against the grain.

Besides the final divergences that are color coded keeping the number of the progession count, it also plots Flash Gordon (momentum) divergences, which are missing the volatility que.

It takes understanding the current market based on the degree of counter direction volatility choke to figure out the weight of what a certain type of divergence can do, so a use of CounterForce62 along is highly recommended. The blue shaded boxes are moves into the F2 territory (200 sample). I got tired of everything being called R and S, and adopted Formula One classes instead.

The Holding Direction plot is sort of limit for a liqudity break having to hold to stay in shape.

The main purpose of course is getting helps with gauging what is happening currently with some very real prompts for an action to be taken (i.e. hedge / cut) thanks to the divergence plots, The F2 boxes (which are the last crack to keep the market in check)

The True Money Flow reversal reversal precision plots belong to Tie Machine on a less cluttered chart (by my vocabulary).

_MFI is one of my 3 indicators currently carrying a price tag of $99.

If history is any guide…

D was below the starting point by 12-25 pips.

Junipero Cherry

It is clear by now that we are gunning for the low @ 1.0640.

Pro volume blocks this week.

The scope according to the Tie Machine has its far end between 1.0627 & 1.0617.

The market had moderated to unqualified due to sample size, and since there is no P/NR or W3Far end hit, your sell zone is from 1.0795 (F2++) to 1.0812 (F3-), see above. This zone coincides perfectly with the Money Flow reversal zone.

A move beyond the E-9 would mark the end of Wave 4. You could have 6-8 trading days before re-connecting with the E-9 afterwards, which happens to be around the February Opex on the 16th.

There’s a Junipero Cherry for everyone.

Suport line… keeps on dipping into the future.

Orangina Sportline

The regression rally is coming to its end.

F2 prints in blue and a final divergence for good measure also in blue.

The money flow peak is finally impersonating an impression.

The reversal zone has printed. Price is being kept from returning to the E-9.

Orange line. The top is near. In auto trading shorting is always more underwhelming. This is where you need to scale and outlast.

On the way down once 1.0691 gets called in, the trip is guaranteed to 1.0655, and who knows, maybe the money flow will invent a new reversal zone by then. The end of Wave 1 down should be spectacuar.

You don’t want any heart ache here… or angina. Be ruthless.


Sicario 3

Tonicio Bel Dero is arriving with the Swahili Comet only to find out that Vera Cruz left for Syracuze. Stay auto tuned.

You know from me that the most important aspect of the correction is having to do their time.

There is something more to know, and that is the objective: it is to get a feel for the lid on the counter directional volatility.

An F0 market can correct back to find if it can now upgrade itself to an F1 (crack 4).

An F1 market can correct back to find out if there are stil choking at F1 or an upgrade to an F2 (crack 5) is possible.

As Heppner put it: find you’re here / find you’re gone.

From final divergence to the municipal trench. The market remains in the qualified bear mode. CounterForce62 would be available for $99.

There were 3 Full Discharges (have enough imagination that the quick fake out mattered as much), so the market had a chance to make a move back up to F2 resistance.

F2 was missed by a single pip.

According to Nick Rhodes, the last daily important level was 1.0775 (this move is the back test), and there is nothing till 1.05155. Of course, new levels can be made.

I have yet to make a portable version of Nick Rhodes for a free download. The daily stochastic is in need of a lower low higher stoch divergence.

You can bet your sweet ass that the market is going to dip below the Green Bumper Line before printing a powder box & a swing low.

If you can’t do the crime, don’t do the time.