This analysis presents a detailed Elliott Wave count on the monthly chart of Gold/USD with Fibonacci extension levels for key price targets. Wave Structure: The chart follows a classical 5-wave impulse structure (I to V). Wave V is currently forming with possible subwave developments marked (1, 2, 3, 4, 5). Fibonacci Key Levels: 100% ($2,529) — initial projection target 127.2% ($2,778) — intermediate resistance 161.8% ($3,095) — dominant bullish extension target 261.8% ($3,019) — extended bullish zone Potential Price Movement: A correction near $2,550 aligns with the Fibonacci 161.8% retracement, followed by a rally to complete wave V. Long-term resistance and liquidity zones highlighted around $3,095. Use this projection for long-term trading strategies. Fibonacci and wave alignments may guide stop-loss placements or profit-taking points. Keep an eye on corrections near wave 4 zones for confirmation before further bullish continuation
Before China released it's free AI tech software last weekend, the chart was hugely Bearish...A great example of following the "Tape Reading" and leaving your ego at the door!
Bank nifty is fighting for its life after breaking down from neck line in head and shoulder pattern Budget is not going to help it much
- Overextended ATH of 2817 reached due to fundamentals and policy uncertainties. - Weekly TF wave count seems like correctional wave (b) has ended, starting the move for wave (c). -Start of Wave (c) which could potentially test golden fib ratio of 0.618 (approximately $2480) or if markets chooses to test 0.786 levels, prices could lower extend to the 2400 region. - Once this is reached, next move to $3200-$3400 could be on the cards given the upward sloping trend line maintaining the clear bullish trend for the rest of this year. - Another confluence would be reducing demand from ATH prices sparking heavier supplies at the top causing a sell off to reach target of wave (c).
ABAT received a $144 million contractual grant from the U.S. Department of Energy (DOE) in December 2024 for the construction of a second lithium-ion battery recycling plant. This new facility will have a processing capacity of approximately 100,000 tonnes per year of battery materials.
//@version=5 //...................../´¯¯/) //...................,/¯.../ //.................../..../ //.............../´¯/'..'/´¯¯`·¸ //.........../'/.../..../....../¨¯\ //..........('(....´...´... ¯~/'..') //...........\..............'...../ //............\....\.........._.·´ //.............\..............( //..............\..............\ //---- //--------- indicator("Ultra Algo", overlay = false) // Inputs src = input(close, "Source", group = "Main settings") p = input.int(180, "Trend period", group = "Main settings", tooltip = "Changes STRONG signals' sensitivity.", minval = 1) atr_p = input.int(155, "ATR Period", group = "Main settings", minval = 1) mult = input.float(2.1, "ATR Multiplier", step = 0.1, group = "Main settings", tooltip = "Changes sensitivity: higher period = higher sensitivty.") mode = input.string("Type A", "Signal mode", options = , group = "Mode") use_ema_smoother = input.string("No", "Smooth source with EMA?", options = , group = "Source") src_ema_period = input(3, "EMA Smoother period", group = "Source") color_bars = input(true, "Color bars?", group = "Addons") signals_view = input.string("All", "Signals to show", options = , group = "Signal's Addon") signals_shape = input.string("Labels", "Signal's shape", options = , group = "Signal's Addon") buy_col = input(color.rgb(0, 255, 8), "Buy colour", group = "Signal's Addon", inline = "BS") sell_col = input(color.rgb(255, 0, 0), "Sell colour", group = "Signal's Addon", inline = "BS") // Calculations src := use_ema_smoother == "Yes" ? ta.ema(src, src_ema_period) : src // Source; h = ta.highest(src, p) // Highest of src p-bars back; l = ta.lowest(src, p) // Lowest of src p-bars back. d = h - l ls = "" // Tracker of last signal m = (h + l) / 2 // Initial trend line; m := bar_index > p ? m : m atr = ta.atr(atr_p) // ATR; epsilon = mult * atr // Epsilon is a mathematical variable used in many different theorems in order to simplify work with mathematical object. Here it used as sensitivity measure. change_up = (mode == "Type B" ? ta.cross(src, m + epsilon) : ta.crossover(src, m + epsilon)) or src > m + epsilon // If price breaks trend line + epsilon (so called higher band), then it is time to update the value of a trend line; change_down = (mode == "Type B" ? ta.cross(src, m - epsilon) : ta.crossunder(src, m - epsilon)) or src < m - epsilon // If price breaks trend line - epsilon (so called higher band), then it is time to update the value of a trend line. sb = open < l + d / 8 and open >= l ss = open > h - d / 8 and open float result = 0 if matype == 'EMA' result := ta.ema(src, malen) result if matype == 'SMA' result := ta.sma(src, malen) result result htf_ma1 = f_ma(ma_len1) htf_ma2 = f_ma(ma_len2) htf_ma3 = f_ma(ma_len3) htf_ma4 = f_ma(ma_len4) htf_ma5 = f_ma(ma_len5) htf_ma6 = f_ma(ma_len6) htf_ma7 = f_ma(ma_len7) htf_ma8 = f_ma(ma_len8) htf_ma9 = f_ma(ma_len9) htf_ma10 = f_ma(ma_len10) //plot(out1, color=green, offset=ma_offset) //plot(out2, color=red, offset=ma_offset) //lengthshort = input(8, minval = 1, title = "Short EMA Length") //lengthlong = input(200, minval = 2, title = "Long EMA Length") //emacloudleading = input(50, minval = 0, title = "Leading Period For EMA Cloud") //src = input(hl2, title = "Source") showlong = input(false, title='Show Long Alerts') showshort = input(false, title='Show Short Alerts') showLine = input(false, title='Display EMA Line') ema1 = input(true, title='Show EMA Cloud-1') ema2 = input(true, title='Show EMA Cloud-2') ema3 = input(true, title='Show EMA Cloud-3') ema4 = input(true, title='Show EMA Cloud-4') ema5 = input(true, title='Show EMA Cloud-5') emacloudleading = input.int(0, minval=0, title='Leading Period For EMA Cloud') mashort1 = htf_ma1 malong1 = htf_ma2 mashort2 = htf_ma3 malong2 = htf_ma4 mashort3 = htf_ma5 malong3 = htf_ma6 mashort4 = htf_ma7 malong4 = htf_ma8 mashort5 = htf_ma9 malong5 = htf_ma10 cloudcolour1 = mashort1 >= malong1 ? color.rgb(0, 255, 0) : color.rgb(255, 0, 0) cloudcolour2 = mashort2 >= malong2 ? #4caf4f47 : #ff110047 cloudcolour4 = mashort4 >= malong4 ? #4caf4f52 : #f2364652 cloudcolour5 = mashort5 >= malong5 ? #33ff0026 : #ff000026 //03abc1 mashortcolor1 = mashort1 >= mashort1 ? color.olive : color.maroon mashortcolor2 = mashort2 >= mashort2 ? color.olive : color.maroon mashortcolor3 = mashort3 >= mashort3 ? color.olive : color.maroon mashortcolor4 = mashort4 >= mashort4 ? color.olive : color.maroon mashortcolor5 = mashort5 >= mashort5 ? color.olive : color.maroon mashortline1 = plot(ema1 ? mashort1 : na, color=showLine ? mashortcolor1 : na, linewidth=1, offset=emacloudleading, title='Short Leading EMA1', force_overlay=true) mashortline2 = plot(ema2 ? mashort2 : na, color=showLine ? mashortcolor2 : na, linewidth=1, offset=emacloudleading, title='Short Leading EMA2', force_overlay=true) mashortline3 = plot(ema3 ? mashort3 : na, color=showLine ? mashortcolor3 : na, linewidth=1, offset=emacloudleading, title='Short Leading EMA3', force_overlay=true) mashortline4 = plot(ema4 ? mashort4 : na, color=showLine ? mashortcolor4 : na, linewidth=1, offset=emacloudleading, title='Short Leading EMA4', force_overlay=true) mashortline5 = plot(ema5 ? mashort5 : na, color=showLine ? mashortcolor5 : na, linewidth=1, offset=emacloudleading, title='Short Leading EMA5', force_overlay=true) malongcolor1 = malong1 >= malong1 ? color.green : color.red malongcolor2 = malong2 >= malong2 ? color.green : color.red malongcolor3 = malong3 >= malong3 ? color.green : color.red malongcolor4 = malong4 >= malong4 ? color.green : color.red malongcolor5 = malong5 >= malong5 ? color.green : color.red malongline1 = plot(ema1 ? malong1 : na, color=showLine ? malongcolor1 : na, linewidth=3, offset=emacloudleading, title='Long Leading EMA1', force_overlay=true) malongline2 = plot(ema2 ? malong2 : na, color=showLine ? malongcolor2 : na, linewidth=3, offset=emacloudleading, title='Long Leading EMA2', force_overlay=true) malongline3 = plot(ema3 ? malong3 : na, color=showLine ? malongcolor3 : na, linewidth=3, offset=emacloudleading, title='Long Leading EMA3', force_overlay=true) malongline4 = plot(ema4 ? malong4 : na, color=showLine ? malongcolor4 : na, linewidth=3, offset=emacloudleading, title='Long Leading EMA4', force_overlay=true) malongline5 = plot(ema5 ? malong5 : na, color=showLine ? malongcolor5 : na, linewidth=3, offset=emacloudleading, title='Long Leading EMA5', force_overlay=true) fill(mashortline1, malongline1, color=cloudcolour1, title='MA Cloud1', transp=45) fill(mashortline2, malongline2, color=cloudcolour2, title='MA Cloud2', transp=65) fill(mashortline4, malongline4, color=cloudcolour4, title='MA Cloud4', transp=65) fill(mashortline5, malongline5, color=cloudcolour5, title='MA Cloud5', transp=65) leftBars = input(15, title='Left Bars ') rightBars = input(15, title='Right Bars') volumeThresh = input(20, title='Volume Threshold') // highUsePivot = fixnan(ta.pivothigh(leftBars, rightBars) ) lowUsePivot = fixnan(ta.pivotlow(leftBars, rightBars) ) r1 = plot(highUsePivot, color=ta.change(highUsePivot) ? na : #FF0000, linewidth=3, offset=-(rightBars + 1), title='Resistance', force_overlay=true) s1 = plot(lowUsePivot, color=ta.change(lowUsePivot) ? na : #00ff0d, linewidth=3, offset=-(rightBars + 1), title='Support', force_overlay=true) //Volume % short = ta.ema(volume, 5) long = ta.ema(volume, 10) osc = 100 * (short - long) / long //For bull / bear wicks // This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © divudivu600 // Developer By ALCON ALGO //telegram : @harmonicryptosignals //@version = 5 //indicator(shorttitle='Oscillator Vision', title='Alcon Oscillator Vision', overlay=false) n1 = input(10, 'Channel length') n2 = input(21, 'Average length') reaction_wt = input.int(defval=1, title='Reaction in change of direction', minval=1) nsc = input.float(53, 'Levels About Buys', minval=0.0) nsv = input.float(-53, 'Levels About Sells', maxval=-0.0) Buy_sales = input(true, title='Only Smart Buy Reversal') Sell_sales = input(true, title='Only Smart Sell Reversal') Histogram = input(true, title='Show Histogarm') //Trendx = input(false, title='Show Trendx') barras = input(true, title='Divergence on chart(Bars)') divregbull = input(true, title='Regular Divergence Bullish') divregbear = input(true, title='Regular Divergence Bearish') divhidbull = input(true, title='Show Divergence Hidden Bullish') divhidbear = input(true, title='Show Divergence Hidden Bearish') Tags = input(true, title='Show Divergence Lable') amme = input(false, title='Activar media movil Extra para WT') White = #FDFEFE Black = #000000 Bearish = #e91e62 Bullish = #18e0ff Strong_Bullish = #2962ff Bullish2 = #00bedc Blue1 = #00D4FF Blue2 = #009BBA orange = #FF8B00 yellow = #FFFB00 LEZ = #0066FF purp = #FF33CC // Colouring tf(_res, _exp, gaps_on) => gaps_on == 0 ? request.security(syminfo.tickerid, _res, _exp) : gaps_on == true ? request.security(syminfo.tickerid, _res, _exp, barmerge.gaps_on, barmerge.lookahead_off) : request.security(syminfo.tickerid, _res, _exp, barmerge.gaps_off, barmerge.lookahead_off) ha_htf = '' show_ha = input.bool(true, "Show HA Plot/ Market Bias", group="HA Market Bias") ha_len = input(7, 'Period', group="HA Market Bias") ha_len2 = input(10, 'Smoothing', group="HA Market Bias") // Calculations { o = ta.ema(open, ha_len) c = ta.ema(close, ha_len) h1 = ta.ema(high, ha_len) l1 = ta.ema(low, ha_len) haclose = tf(ha_htf, (o + h1 + l1 + c) / 4, 0) xhaopen = tf(ha_htf, (o + c) / 2, 0) haopen = na(xhaopen ) ? (o + c) / 2 : (xhaopen + haclose ) / 2 hahigh = math.max(h1, math.max(haopen, haclose)) halow = math.min(l1, math.min(haopen, haclose)) o2 = tf(ha_htf, ta.ema(haopen, ha_len2), 0) c2 = tf(ha_htf, ta.ema(haclose, ha_len2), 0) h2 = tf(ha_htf, ta.ema(hahigh, ha_len2), 0) l2 = tf(ha_htf, ta.ema(halow, ha_len2), 0) ha_avg = (h2 + l2) / 2 // } osc_len = 8 osc_bias = 100 *(c2 - o2) osc_smooth = ta.ema(osc_bias, osc_len) sigcolor = (osc_bias > 0) and (osc_bias >= osc_smooth) ? color.new(Bullish, 35) : (osc_bias > 0) and (osc_bias < osc_smooth) ? color.new(Bullish2, 75) : (osc_bias < 0) and (osc_bias osc_smooth) ? color.new(Bearish, 75) : na // } nsc1 = nsc nsc2 = nsc + 5 nsc3 = nsc + 10 nsc4 = nsc + 15 nsc5 = nsc + 20 nsc6 = nsc + 25 nsc7 = nsc + 30 nsc8 = nsc + 35 nsv1 = nsv - 5 nsv2 = nsv - 10 nsv3 = nsv - 15 nsv4 = nsv - 20 nsv5 = nsv - 25 nsv6 = nsv - 30 nsv7 = nsv - 35 nsv8 = nsv - 40 ap = hlc3 esa = ta.ema(ap, n1) di = ta.ema(math.abs(ap - esa), n1) ci = (ap - esa) / (0.015 * di) tci = ta.ema(ci, n2) wt1 = tci wt2 = ta.sma(wt1, 4) direction = 0 direction := ta.rising(wt1, reaction_wt) ? 1 : ta.falling(wt1, reaction_wt) ? -1 : nz(direction ) Change_of_direction = ta.change(direction, 1) pcol = direction > 0 ? Strong_Bullish : direction < 0 ? Bearish : na obLevel1 = input(60, 'Over Bought Level 1') obLevel2 = input(53, 'Over Bought Level 2') osLevel1 = input(-60, 'Over Sold Level 1') osLevel2 = input(-53, 'Over Sold Level 2') rsi = ta.rsi(close,14) color greengrad = color.from_gradient(rsi, 10, 90, #00ddff, #007d91) color redgrad = color.from_gradient(rsi, 10, 90, #8b002e, #e91e62) ob1 = plot(obLevel1, color=#e91e6301) os1 = plot(osLevel1, color=#00dbff01) ob2 = plot(obLevel2, color=#e91e6301) os2 = plot(osLevel2, color=#00dbff01) p1 = plot(wt1, color=#00dbff01) p2 = plot(wt2, color=#e91e6301) plot(wt1 - wt2, color=wt2 - wt1 > 0 ? redgrad : greengrad, style=plot.style_columns) // fill(p1,p2,color = wt2 - wt1 > 0 ? redgrad: greengrad) // old fill(p1,p2,color = sigcolor) // new fill(ob1,ob2,color = #e91e6350) fill(os1,os2,color = #00dbff50) midpoint = (nsc + nsv) / 2 ploff = (nsc - midpoint) / 8 BullSale = ta.crossunder(wt1, wt2) and wt1 >= nsc and Buy_sales == true BearSale = ta.crossunder(wt1, wt2) and Buy_sales == false Bullishh = ta.crossover(wt1, wt2) and wt1 _src < _src and _src < _src and _src > _src and _src > _src f_bot_fractal(_src) => _src > _src and _src > _src and _src < _src and _src < _src f_fractalize(_src) => f_top_fractal(_src) ? 1 : f_bot_fractal(_src) ? -1 : 0 fractal_top1 = f_fractalize(wt1) > 0 ? wt1 : na fractal_bot1 = f_fractalize(wt1) < 0 ? wt1 : na high_prev1 = ta.valuewhen(fractal_top1, wt1 , 0) high_price1 = ta.valuewhen(fractal_top1, high , 0) low_prev1 = ta.valuewhen(fractal_bot1, wt1 , 0) low_price1 = ta.valuewhen(fractal_bot1, low , 0) regular_bearish_div1 = fractal_top1 and high > high_price1 and wt1 < high_prev1 and divregbear == true hidden_bearish_div1 = fractal_top1 and high < high_price1 and wt1 > high_prev1 and divhidbear == true regular_bullish_div1 = fractal_bot1 and low < low_price1 and wt1 > low_prev1 and divregbull == true hidden_bullish_div1 = fractal_bot1 and low > low_price1 and wt1 < low_prev1 and divhidbull == true col1 = regular_bearish_div1 ? Bearish : hidden_bearish_div1 ? Bearish : na col2 = regular_bullish_div1 ? Strong_Bullish : hidden_bullish_div1 ? Strong_Bullish : na //plot(title='Divergence Bearish', series=fractal_top1 ? wt1 : na, color=col1, linewidth=2, transp=0) //plot(title='Divergence Bullish', series=fractal_bot1 ? wt1 : na, color=col2, linewidth=2, transp=0) plotshape(regular_bearish_div1 and divregbear and Tags ? wt1 + ploff * 1 : na, title='Divergence Regular Bearish', text='Bear', location=location.absolute, style=shape.labeldown, size=size.tiny, color=color.new(Bearish, 0), textcolor=color.new(White, 0)) plotshape(hidden_bearish_div1 and divhidbear and Tags ? wt1 + ploff * 1 : na, title='Divergence Hidden Bearish', text='H Bear', location=location.absolute, style=shape.labeldown, size=size.tiny, color=color.new(Bearish, 0), textcolor=color.new(White, 0)) plotshape(regular_bullish_div1 and divregbull and Tags ? wt1 - ploff * 1 : na, title='Divergence Regular Bullish', text='Bull', location=location.absolute, style=shape.labelup, size=size.tiny, color=color.new(Strong_Bullish, 0), textcolor=color.new(White, 0)) plotshape(hidden_bullish_div1 and divhidbull and Tags ? wt1 - ploff * 1 : na, title='Divergence Hidden Bullish', text='H Bull', location=location.absolute, style=shape.labelup, size=size.tiny, color=color.new(Strong_Bullish, 0), textcolor=color.new(White, 0)) /////// Unfazed Alerts ////// ////////////////////////////////////////////////-MISTERMOTA MOMENTUM-///////////////////////////////////// source = input(close) responsiveness = math.max(0.00001, input.float(0.9, minval=0.0, maxval=1.0)) periodd = input(50) sd = ta.stdev(source, 50) * responsiveness var worm = source diff = source - worm delta = math.abs(diff) > sd ? math.sign(diff) * sd : diff worm += delta ma = ta.sma(source, periodd) raw_momentum = (worm - ma) / worm current_med = raw_momentum min_med = ta.lowest(current_med, periodd) max_med = ta.highest(current_med, periodd) temp = (current_med - min_med) / (max_med - min_med) value = 0.5 * 2 value *= (temp - .5 + .5 * nz(value )) value := value > .9999 ? .9999 : value value := value < -0.9999 ? -0.9999 : value temp2 = (1 + value) / (1 - value) momentum = .25 * math.log(temp2) momentum += .5 * nz(momentum ) //momentum := raw_momentum signal = nz(momentum ) trend = math.abs(momentum) switch type "SMA" => ta.sma(source, length) "EMA" => ta.ema(source, length) "SMMA (RMA)" => ta.rma(source, length) "WMA" => ta.wma(source, length) "VWMA" => ta.vwma(source, length) typeMA = input.string(title = "Method", defval = "SMA", options= , group="MA Settings") smoothingLength = input.int(title = "Length", defval = 5, minval = 1, maxval = 100, group="MA Settings") smoothingLine = ma(delta, smoothingLength, typeMA) deltaText=(delta > 0 ? (delta > delta ? " MOM > 0 and ▲ Growing, MOM = " + str.tostring(delta , "#.##") :" MOM > 0 and ▼ Falling, MOM = " + str.tostring(delta , "#.##") ) : (delta > delta ? "MOM < 0 and ▲ Growing, MOM = " + str.tostring(delta , "#.##"): " MOM < 0 and ▼ Falling, MOM = " + str.tostring(delta , "#.##"))) oneDay = 24 * 60 * 60 * 1000 barsAhead = 3 tmf = if timeframe.ismonthly barsAhead * oneDay * 30 else if timeframe.isweekly barsAhead * oneDay * 7 else if timeframe.isdaily barsAhead * oneDay else if timeframe.isminutes barsAhead * oneDay * timeframe.multiplier / 1440 else if timeframe.isseconds barsAhead * oneDay * timeframe.multiplier / 86400 else 0 angle(_src) => rad2degree = 180 / 3.14159265359 //pi ang = rad2degree * math.atan((_src - _src ) / ta.atr(14)) ang emae = angle(smoothingLine) emaanglestat = emae > emae ? "▲ Growing": "▼ Falling" deltaTextxxx = "MOM MA/ATR angle value is " + str.tostring(emae, "#.##") + "° and is " + emaanglestat deltacolorxxx = emae >0 and emae >=emae ? txtcol_grow_above : txtcol_fall_below // Label label lpt1 = label.new(time, -30, text=deltaTextxxx , color=deltacolorxxx, xloc=xloc.bar_time, style=label.style_label_left, textcolor=color.white, textalign=text.align_left, size=size.normal) label.set_x(lpt1, label.get_x(lpt1) + tmf) label.delete(lpt1 ) txtdeltaColors = (delta > 50 ? (delta < delta ? txtcol_grow_above : txtcol_fall_above) : (delta < delta ? txtcol_grow_below : txtcol_fall_below)) label ldelta1 = label.new(time, 30, text=deltaText , color=txtdeltaColors, xloc=xloc.bar_time, style=label.style_label_left, textcolor=color.white, textalign=text.align_left, size=size.normal) label.set_x(ldelta1, label.get_x(ldelta1) + tmf) label.delete(ldelta1 ) //...................../´¯¯/) //...................,/¯.../ //.................../..../ //.............../´¯/'..'/´¯¯`·¸ //.........../'/.../..../....../¨¯\ //..........('(....´...´... ¯~/'..') //...........\..............'...../ //............\....\.........._.·´ //.............\..............( //..............\..............\ //---- //---------
Hi I tried to be as accurate as I can . we were able to do with jasmyusdt, therefore here's the same for eth, make sure I. Line with previous posts about eth.. Since it's the 4hr time frame time can vary until trend is complete
Hey everyone, let’s dive into my technical analysis of the Naira and its future trajectory against the US Dollar. Will the Naira strengthen, or will it continue to surge (lose value)? I’ve spotted some critical points on the chart that pinpoint the direction of the next price move with accuracy. Let’s break it down! --- ### *The Current State of the Naira* The Naira has been under immense pressure, and the charts tell a clear story. Using technical analysis, I’ve identified key levels and patterns that reveal where the currency might be headed next. This analysis is independent of the political and economic reforms under the current administration, but let’s be real—the Nigerian economy has been struggling since the Tinubu regime took over. Despite this, I believe the future is bright for our economy. Let’s explore why. --- ### *Key Points on the Chart* 1. *Support and Resistance Levels*: - The Naira has been testing critical support levels, and if these levels break, we could see further depreciation. - On the flip side, if the Naira manages to break through key resistance levels, it could signal a potential reversal and strengthening. 2. *Trendlines and Patterns*: - The downward trendline on the NGN/USD chart shows a consistent loss of value. However, if this trendline is broken, it could indicate a shift in momentum. - I’ve also spotted specific chart patterns (like triangles or channels) that suggest a potential breakout or breakdown in the near future. 3. *Pinpoint Accuracy*: - By analyzing historical price action, I’ve identified exact levels where the Naira could either reverse or continue its decline. These levels are crucial for traders and investors to watch. --- ### *The Big Question: Strengthen or Surge?* - *Bearish Scenario*: If the Naira breaks below key support levels, we could see it surge further (lose more value) against the Dollar. This would likely be driven by ongoing economic challenges, such as inflation, low foreign reserves, and weak investor confidence. - *Bullish Scenario*: If the Naira breaks above key resistance levels, it could signal a reversal and potential strengthening. This would require positive developments, such as improved foreign exchange policies, increased foreign investment, or a boost in oil revenues. --- ### *Why I’m Optimistic About Nigeria’s Future* Despite the current struggles, I believe the future is bright for Nigeria. Here’s why: - *Reforms*: While the current administration’s reforms have been painful in the short term, they could lay the foundation for long-term economic stability. - *Potential for Growth*: Nigeria’s large population and abundant resources provide a solid base for future growth. - *Resilience*: Nigerians are known for their resilience and ingenuity, which will play a key role in turning the economy around. --- ### *What’s Next for the Naira?* To find out exactly where the Naira is headed next, watch my video for a detailed breakdown. I’ll show you the key levels to watch, the potential scenarios, and what it all means for traders and investors. Don’t forget to *like, share, and subscribe* to stay updated on my latest analyses. Drop your thoughts in the comments—let’s make this discussion engaging and insightful!
When in doubt - zoom out On Thursday and Friday the DAX / GDAXI reached a high of 21800. Could this be a potential top ? Looking at the W and M chart (log) the DAX (XETRA) has been trading in a rising wedge since 2003. With reaching the 21800 level, the DAX has touched the upper line of this rising wedge again. The last time was in April 2015. The monthly MACD (5 30) has never been this high and the last time the RSI was this high (77) was in 2015 and 2007. Zooming in on the 5 minute chart (GDAXI), price touched the 21790-21800 region five times in the last two trading days, fell below the current trend line (since Jan 13th), retested it and was rejected to the downside. There are no certainties in the stock market, but this being at least a local top is quite probable.
What are your thoughts on BITCOIN? Bitcoin is still struggling with its key resistance zone, showing signs of weakness in continuing its upward movement. Based on the current price structure, we anticipate a short-term correction towards the identified support level. If the support holds and a rebound is confirmed, the uptrend could regain strength, with the first target in this scenario being the $115,000 zone.