Deep Crab@1.618XAHello there,
The Bullish Deep Crab@1.618XA it's getting complete so nicely, and that is really amusing, the price never tested this support zone and I believe it's going to be the fisrt time to be tested, and that is represented with this amusing and beautiful Harmonic Bullish Deep Crab@1.618XA Pattern, so let's get some profit, cuz the downtrend it's really strong and the bearside it's really showing their power, but I firmly believe it will lose their power soon, and this Crab will complete possibly in December 2022 or February 2023, so stay tuned to that and get some profit on it!
Setup Rules:
1. Harmonic Patterns Completion (Bullish Deep Crab@1.618XA) - 75% Complete ;
2. PRZ Hit - Waiting;
3. PRZ Test - Waiting;
4. Candlestick Reversal Sign - Waiting;
5. Candlestick Confirmation Sign -Waiting;
6. RSI Reversal Sign - Waiting;
7. RSI Confirmation Sign -Waiting;
8. Type-1 Reaction - Waiting;
9. Type-2 Reversal - Waiting;
10. Risk Management - Applied;
11. Risk / Reward - 1/3.
I have set the Lord always before me;
Because he is at my right hand
I shall not be moved.
Psalms 16:8
NKJV
Crab
WazirX (WRX) formed bullish Crab for upto 17% pumpHi dear friends, hope you are well and welcome to the new trade setup of WazirX ( WRX ) with Bitcoin pair.
On a 4-hr time frame, WRX has formed big bullish Crab pattern.
Note: Above idea is for educational purpose only. It is advised to diversify and strictly follow the stop loss, and don't get stuck with trade
DKNG - Draftkings Deep Crab Harmonic Weekly setup.DKNG - Draftkings, perfect harmonic deep crab setup with the 161% PRZ being respected and a nice bullish engulfing on the weekly to trigger entry. long with T1 @ 34.50 T2 @ 49.95 SL 9.65 RR @ T1 = 2 : 1, RR @ T2 = 3.88, SL moved to break even at T1 and half profits to be booked. weekly setup so patience required as setup will take a while to play out.
USDJPY-Weekly Market Analysis-Aug22,Wk2With no mistake, USDJPY is on a Bullish Trend, but that doesn't mean we can't look for a counter-trend trading opportunity. We have a Bearish Crab Pattern completing at 135.58 on the 1hourly chart.
On the 4-hourly chart, there is a potential Bearish Bat Pattern that has the potential of completing at 136.59.
Knowing that this is a counter-trend setup, a candlestick confirmation is required against a strong bullish trend.
ali//@version=4
// Indicator to combines:
study (title = "Golden cross", shorttitle = "GD cross", overlay = true)
// --------- Inputs
i_showEmas = input(defval = true, title = "=========== EMAs ============")
i_maSrc = input(defval = close, title = "EMA Source")
i_maFast1 = input(defval = 12, title = "EMA Fast 1")
i_maFast2 = input(defval = 50, title = "EMA Fast 2")
i_maLen = input(defval = 200, title = "SMA Length")
i_rangeLen = input(defval = 0.618, title = "Range Length", type = input.float)
i_currentT = input(defval = true, title = "Use Current Time?")
i_tf = input(defval = "D", title = "Selec Diferent Timeframe", type = input.resolution)
i_showCh = input(defval = false, title = "Show Channel")
i_showbarCol = input(defval = true, title = "Show Bar Color")
i_showAlert = input(defval = true, title = "Show Alert")
// --------- Calculations
f_maFast1 = ema(i_maSrc, i_maFast1)
f_maFast2 = ema(i_maSrc, i_maFast2)
f_maTrend = i_currentT ?
sma(i_maSrc, i_maLen) :
security(syminfo.tickerid, i_tf,
sma(i_maSrc, i_maLen) )
f_chBasis = atr(i_maLen) * i_rangeLen
f_chTop = f_maTrend + f_chBasis
f_chBot = f_maTrend - f_chBasis
f_range = ((open <= f_chTop) or (close <= f_chTop)) and
((open >= f_chBot) or (close >= f_chBot))
f_GCross = crossover (f_maFast2, f_maTrend)
f_DCross = crossunder (f_maFast2, f_maTrend)
f_dirTrend = f_range ? 0 :
i_maSrc >= f_maTrend ? 1 : -1
// Set initial values
f_condition = 0
f_buyCond = f_dirTrend == 1 and f_maFast1 > f_maFast2
f_sellCond = f_dirTrend == -1 and f_maFast1 < f_maFast2
f_buyCloseCo = f_dirTrend == 1 and f_maFast1 < f_maFast2
f_sellCloseC = f_dirTrend == -1 and f_maFast1 > f_maFast2
f_closeCond = f_buyCloseCo or f_sellCloseC
//Conditions
f_condition := f_condition != 1 and f_buyCond ? 1 :
f_condition != -1 and f_sellCond ? -1 :
f_condition != 0 and f_closeCond ? 0 :
nz(f_condition )
f_buy = f_condition == 1 and f_condition != 1
f_sell = f_condition == -1 and f_condition != -1
f_close = f_condition != 0 and f_closeCond
// --------- Colors
c_orange = #f57f17 //Orange
c_green = #006400 //Green
c_green100 = #006400FF//Green 100%
c_greenLight = #388e3c //Green Light
c_red = #8B0000 //Red
c_red100 = #8B0000FF//Red 100%
c_redLight = #b71c1c //Red Light
c_white = #ffffff //White
c_gray = #808080 //Gray
c_maFast = f_range ? c_orange :
f_buyCloseCo ? c_orange :
f_sellCloseC ? c_orange :
f_dirTrend == 1 ? c_green :
f_dirTrend == -1 ? c_red : na
c_maTrend = f_dirTrend == 0 ? c_orange :
f_dirTrend == 1 ? c_green100 :
f_dirTrend == -1 ? c_red100 : na
c_ch = f_dirTrend == 0 ? c_orange :
f_dirTrend == 1 ? c_green :
f_dirTrend == -1 ? c_red : na
c_barCol = f_dirTrend == 0 ? c_orange :
f_dirTrend == 1 and (open <= close) ? c_green100 :
f_dirTrend == 1 and (open > close) ? c_greenLight :
f_dirTrend == -1 and (open >= close) ? c_red100 :
f_dirTrend == -1 and (open < close) ? c_redLight : na
// --------- Plots
p_maFast1 = plot(
f_maFast1,
title = "EMA Fast 1",
color = c_maFast,
linewidth = 1)
p_maFast2 = plot(
f_maFast2,
title = "EMA Fast 2",
color = c_maFast,
linewidth = 2)
fill(
p_maFast1,
p_maFast2,
title = "EMAs Fill",
transp = 80,
color = c_maFast)
plot(
f_maTrend,
title = "SMA Trend",
color = c_maTrend,
linewidth = 3)
p_chTop = plot(
i_showCh ? f_chTop : na,
title = "Top Channel",
color = c_maTrend,
linewidth = 1)
p_chBot = plot(
i_showCh ? f_chBot : na,
title = "Bottom Channel",
color = c_maTrend,
linewidth = 1)
fill(
p_chTop,
p_chBot,
title = "Channel",
color = c_ch)
// --------- Alerts
plotshape(
i_showAlert and f_buy ? high : na,
title = "Buy Label",
text = "Buy",
textcolor = c_white,
color = c_green100,
transp = 0,
style = shape.labelup,
size = size.normal,
location = location.belowbar)
plotshape(
i_showAlert and f_sell ? low : na,
title = "Sell Label",
text = "Sell",
textcolor = c_white,
color = c_red100,
transp = 0,
style = shape.labeldown,
size = size.normal,
location = location.abovebar)
plotshape(
i_showAlert and f_close ? close : na,
title = "Close Label",
text = "Close",
textcolor = c_orange,
color = c_orange,
transp = 0,
style = shape.xcross,
size = size.small,
location = location.absolute)
plotshape(
i_showAlert and f_GCross ? f_maTrend : na,
title = "Golden Cross Label",
text = "Golden Cross",
textcolor = c_white,
color = c_orange,
transp = 0,
style = shape.labelup,
size = size.normal,
location = location.absolute)
plotshape(
i_showAlert and f_DCross ? f_maTrend : na,
title = "Death Cross Label",
text = "Death Cross",
textcolor = c_white,
color = c_orange,
transp = 0,
style = shape.labeldown,
size = size.normal,
location = location.absolute)
barcolor(
i_showbarCol ? c_barCol : na)
alertcondition(
f_buy or f_sell or f_close or f_GCross or f_DCross,
title = "Alert",
message = "Alert")
alertcondition(
f_buy,
title = "Buy Alert",
message = "Buy Alert")
alertcondition(
f_sell,
title = "Sell Alert",
message = "Sell Alert")
alertcondition(
f_close,
title = "Close Alert",
message = "Close Alert")
alertcondition(
f_GCross,
title = "Golden Cross Alert",
message = "Golden Cross Alert")
alertcondition(
f_DCross,
title = "Death Cross Alert",
message = "Death Cross Alert")
Week 8 assignment (EXHIBIT A) for AUDJPY by PROSHERIFFLong on AUDJPY
1. Bullish Crab pattern has formed as Point D is lower than point X.
2. Line of support has already been tested before at point E.
3. Trade can be taken once the current candle closes with bullish signals, which will mean the bulls are in charge now.
4. TP1 (0.786 Level) = 92.764
5. TP2 (0.618 Level) = 93.403
6. SL (Below the support line)= 91.295
they never expect the crabthis is an example of a crab market, reference : BTC 2015
I'm sharing this because today, in 2022, people only expect extreme dump or extreme pump
instead of trading level to level, they put themselves in situation of disadvantage due to their high expectations
high ego and high expectations will always be the main reasons of big losses
just keep in mind that a crab market is also possible. It doesn't always have to go crazy high or crazy low
giving you more perspective with this funny chart
💎 CHZUSDT : 487.39% Profit Potential in Next 9 Months💣💣💣💣last 2-3 weeks we seen huge buying in CHZ coin, in upcoming months its to going pump very hard.
entry and targets are given on the chart. Treat this idea as long-term investment
please Like and comment if there are any queries.
#bitcoin #altcoinseason #altcoin #altnews
Deep Crab@1.618XADear mates,
Hello again, here bringing to you a brand new edge on Gold, the Deep Harmonic Bearish Crab@1.618XA.
I do believe the price it will start the reversal trend next week in but first I do believe it's going to test this area of strong resistance which is crossing the PRZ of the Deep Crab, and then start the downtrend.
The RSI indicator it's already showing a Oversold movement, so this a proove that it will probably going down soon!
Setup Rules:
1. Harmonic Patterns Completion ( Deep Bearish Crab@1.618XA) - 65% Complete ;
2. PRZ Hit - Waiting;
3. PRZ Test -Waiting;
4. Candlestick Reversal Sign - Waiting;
5. Candlestick Confirmation Sign -Waiting;
6. RSI Reversal Sign - Waiting;
7. RSI Confirmation Sign -Waiting;
8. Type-1 Reaction - Waiting;
9. Type-2 Reversal - Waiting;
10. Risk Management - Applied;
11. Risk / Reward - 1/3.
Continuation or sell off? US30 - Higher timeframe outlook:
Price coming into weekly downtrend supply along with filling a nice imbalance, good potential zone for a reversal, however price could continue bullish all the way towards the D point of the crab filling these imbalances before closing back below the weekly structure, (As daily and 4H are both bullish).
If we fail to break the 1H/4H lows i'm going to look for buys towards that D point as Crypto/stocks have been super bullish this week too, and the rally could continue, however if we start failing highs/breaking structure i'll look for sells, will keep an eye on structure and market sentiment!
This crab is quite probable though, one of my favorite harmonics to trade for reliability especially the C/D leg for direction, but if this pattern completes without any major pullbacks it will be a more or less guaranteed big swing back down, so 100% get alarms on that D point zone! (Probably for next week if it completes so no rush there!)
Let me know your thoughts!
* Disclaimer **
These ideas I never trade until the end target with my initial lots, I focused on high probable entries with higher lots and use a specific partial taking strategy giving me a very high win rate and take most of my profits very early, I only leave a small % of my capital to run the entire trade. On the flip side im constantly monitoring LTF momentum and will close early if things change, these analysis's are for research purposes only.
Mahindra & Mahindra Finance - ALT Shark with Wolfe Wave M_mFin has alt shark along with wolfewave and rsi negative divergence on daily timeframe. Also a deep crab and Wolfewave at lower timeframe, Expecting a upside move till shark PRZ after hitting small TF ww target . IF sl taken then we can expect Gartley and can long till 272.
Forecast of gartley if broken B
SushiSwap (SUSHI) formed bullish Crab for upto 17.5% pumpHi dear friends, hope you are well and welcome to the new trade setup of SushiSwap ( SUSHI ).
Previously I shared a long-term trade-setup for Sushi , which is still in play:
Now on a 4-hr time frame, SUCHI has formed big bullish Crab pattern.
Note: Above idea is for educational purpose only. It is advised to diversify and strictly follow the stop loss, and don't get stuck with trade