AMD is trying to inch higher and confirm https://www.tradingview.com/x/BHnBgMkj/ short term BUY.
BANKNIFTY is in parallel channel in both daily timeframe and hourly timeframe, with bullish signals. Target in next 1 to 2 weeks is marked
Market open bullish for today, change to an uptrend. This pair in a macro timeframe is aligned with a long-term bullish trend.
this is a possible diamond? we are here to invest, every single bear, u know hahahaha
//@version=5 indicator("POC-Candle - EMA -ATR - Long Shadow - 50per Candle", overlay=true) //Dev by : @mk8813 // // -------------------------- // General Settings // -------------------------- res = input.timeframe(title="Resolution", defval="60", group="General Settings") // -------------------------- // EMA Settings // -------------------------- enableEMA = input.bool(true, title="Enable EMA", group="EMA Settings") emaLength = input.int(200, title="EMA Length", group="EMA Settings") // -------------------------- // Donchian Channel Settings // -------------------------- enableDonchian = input.bool(true, title="Enable Donchian Channel", group="Donchian Settings") donchianLength = input.int(13, title="Donchian Channel Length", group="Donchian Settings") enableDonchianLines = input.bool(true, title="Enable Donchian Lines", group="Donchian Settings") // -------------------------- // High Volume Candle Settings // -------------------------- enableHighVolume = input.bool(true, title="Enable High Volume Candle", group="High Volume Candle Settings") hvLength = input.int(10, title="Period Length", group="High Volume Candle Settings") // -------------------------- // POC Settings // -------------------------- enablePOC = input.bool(true, title="Enable POC", group="POC Settings") // -------------------------- // ATR Settings // -------------------------- enableATR = input.bool(true, title="Enable ATR", group="ATR Settings") atr_length = input.int(title="ATR Length", defval=14, minval=1, group="ATR Settings") smoothing = input.string(title="Smoothing", defval="RMA", options= , group="ATR Settings") candle_ATR_ratio = input.float(2, title="Candle ATR Ratio", group="ATR Settings") // -------------------------- // Long Shadow Settings // -------------------------- enableLongShadow = input.bool(true, title="Enable Long Shadow", group="Long Shadow Settings") pipThreshold = input.int(title="Shadow Threshold (Points)", defval=380, group="Long Shadow Settings") // -------------------------- // White 50-Candle Settings (50-per body) // -------------------------- enableWhiteShadow = input.bool(true, title="Enable 50-Percent body Candle", group="50-per Candle Settings") // -------------------------- // Data Input (for current symbol) // -------------------------- my_close = request.security(syminfo.tickerid, res, close) my_open = request.security(syminfo.tickerid, res, open) my_low = request.security(syminfo.tickerid, res, low) my_high = request.security(syminfo.tickerid, res, high) my_volume = request.security(syminfo.tickerid, res, volume) my_atr = request.security(syminfo.tickerid, res, ta.atr(atr_length)) // -------------------------- // Long Shadow Calculation (Using shadow threshold input) // -------------------------- // ورودی آستانه سایه (به پیپ) // تشخیص اینکه آیا نماد جاری مربوط به طلا (XAU) است یا خیر isGold = str.contains(syminfo.tickerid, "XAU") // اگر نماد مربوط به طلا باشد، pipSize را 0.01 در نظر میگیریم، در غیر این صورت از syminfo.mintick استفاده میشود pipsize = isGold ? 0.01 : syminfo.mintick // تبدیل آستانه پیپ به مقدار واقعی قیمت shadowThreshold = pipThreshold * pipsize // محاسبه سایههای بالایی و پایینی کندل upperShadow = high - math.max(open, close) lowerShadow = math.min(open, close) - low // بررسی اینکه آیا سایهها از آستانه تعیین شده بزرگتر هستند isLongUpperShadow = upperShadow >= shadowThreshold isLongLowerShadow = lowerShadow >= shadowThreshold // رسم علامتها بر اساس نتیجه plotshape(isLongUpperShadow, title="Long Upper Shadow", style=shape.circle, location=location.abovebar, color=color.purple, size=size.tiny) plotshape(isLongLowerShadow, title="Long Lower Shadow", style=shape.circle, location=location.belowbar, color=color.purple, size=size.tiny) // -------------------------- // EMA Calculation // -------------------------- emaValue = ta.ema(my_close, emaLength) plot(enableEMA ? emaValue : na, title="EMA", color=color.red, linewidth=2) // -------------------------- // Donchian Channel Calculation // -------------------------- donchianHigh = ta.highest(my_high, donchianLength) donchianLow = ta.lowest(my_low, donchianLength) donchianMid = (donchianHigh + donchianLow) / 2 plot(enableDonchian and enableDonchianLines ? donchianHigh : na, title="Donchian High", color=color.blue, linewidth=2) plot(enableDonchian and enableDonchianLines ? donchianLow : na, title="Donchian Low", color=color.blue, linewidth=2) plot(enableDonchian ? donchianMid : na, title="Donchian Mid", color=color.gray, linewidth=2) // -------------------------- // ATR Calculation (using my_* data) // -------------------------- trueChange = math.abs(my_close - my_open) true_range_condition = trueChange >= candle_ATR_ratio * my_atr barcolor(enableATR and true_range_condition ? color.blue : na) plotcandle(enableATR and true_range_condition ? my_open : na, my_high, my_low, my_close, color=color.yellow) // -------------------------- // 50-per Candle Calculation // -------------------------- candleRange = my_high - my_low upperShadowCalc = my_high - math.max(my_open, my_close) lowerShadowCalc = math.min(my_open, my_close) - my_low totalShadow = upperShadowCalc + lowerShadowCalc whiteCandleCondition = candleRange > 0 and (totalShadow >= 0.5 * candleRange) finalBarColor = enableWhiteShadow and whiteCandleCondition ? color.white : (enableATR and true_range_condition ? color.blue : na) barcolor(finalBarColor) // -------------------------- // High Volume Candle Calculation // -------------------------- highestVolume = ta.highest(my_volume, hvLength) isHighestVolume = my_volume == highestVolume isGreenCandle = my_close > my_open isRedCandle = my_close < my_open longcondition = isHighestVolume and isGreenCandle shortcondition = isHighestVolume and isRedCandle plotshape(enableHighVolume and isHighestVolume and isGreenCandle, title="Highest Volume Green", location=location.belowbar, color=color.green, style=shape.triangleup, size=size.small) plotshape(enableHighVolume and isHighestVolume and isRedCandle, title="Highest Volume Red", location=location.abovebar, color=color.red, style=shape.triangledown, size=size.small) alertcondition(enableHighVolume and longcondition, title="Long High Volume", message="Long High Volume") alertcondition(enableHighVolume and shortcondition, title="Short High Volume", message="Short High Volume") alertcondition(enableHighVolume and (longcondition or shortcondition), title="Short or Long High Volume", message="Short or Long High Volume") // -------------------------- // POC Calculation (Typical Price using my_* data) // -------------------------- pocPrice = (my_high + my_low + my_close) / 3 plotshape(enablePOC ? pocPrice : na, title="POC", location=location.absolute, color=color.yellow, style=shape.square, size=size.tiny)
Based off of my proprietary trading levels named TRN(Trend Reactionary Numbers) , I have found Resistance at 97,752.00 and a main support below at 92,273. The warning for a potential downward move to the main support is 94,200, a brake yields 92,273.
Trading Idea 1) Find a FIBO slingshot 2) Check FIBO 61.80% level 3) Entry Point > 5.1/61.80% Chart time frame: B A) 15 min(1W-3M) B) 1 hr(3M-6M) C) 4 hr(6M-1year) D) 1 day(1-3years) Stock progress: B A) Keep rising over 61.80% resistance B) 61.80% resistance C) 61.80% support D) Hit the bottom E) Hit the top Stocks rise as they rise from support and fall from resistance. Our goal is to find a low support point and enter. It can be referred to as buying at the pullback point. The pullback point can be found with a Fibonacci extension of 61.80%. This is a step to find entry level. 1) Find a triangle (Fibonacci Speed Fan Line) that connects the high (resistance) and low (support) points of the stock in progress, where it is continuously expressed as a Slingshot, 2) and create a Fibonacci extension level for the first rising wave from the start point of slingshot pattern. When the current price goes over 61.80% level , that can be a good entry point, especially if the SMA 100 and 200 curves are gathered together at 61.80%, it is a very good entry point. As a great help, tradingview provides these Fibonacci speed fan lines and extension levels with ease. So if you use the Fibonacci fan line, the extension level, and the SMA 100/200 curve well, you can find an entry point for the stock market. At least you have to enter at this low point to avoid trading failure, and if you are skilled at entering this low point, with fibonacci6180 technique, your reading skill to chart will be greatly improved. If you want to do day trading, please set the time frame to 5 minutes or 15 minutes, and you will see many of the low point of rising stocks. If want to prefer long term range trading, you can set the time frame to 1 hr or 1 day.
While Sharks (whales) looking for buyers in order to full fill their sell orders, All the indicators screaming buy! Watch how accurate are our insights and how we are able to identify every single move of the market.. Don't buy this coin!! Follow us for more
Now, if you are a trader you only have one question, "Is the bottom in?" "Can I buy now?" These are two questions but they are related. If the bottom is in, you can buy. If you can buy, it is because the bottom is already in. Well, there might be other questions, "Should I buy now?" Very different, can I buy or should I buy... If your question is the one with the 'should' then you might need to do some planning before moving ahead. If your question is related to the chart and the bottom being in, let me clear your doubts. Trading volume is zero. We have a lower low with zero-dropping volume. This means that there is no bearish strength. MA200 is working as support. It was pierced on a wick but the close happened above, 3-Feb. After this event the level remains untested. This means that the bears are not really active. Buying or not buying will depend on your strategy. You can buy and hold. If prices drop, you can wait patiently or buy more. MA200 is matching perfectly the 0.618 Fib. retracement level in relation to the last bullish wave. This means that this a strong level. This level sits above 0.23000. As long as DOGEUSDT stays above this level, the bulls are good; we are green. If it moves below, nothing changes, the bias continues bullish short-, mid- and long-term. Regardless of what happens in the very short-term, prices are going up. Knowing this, it is more than ok to buy and hold. That's just my opinion of course. When the next bullish wave starts it will be the beginning of a new All-Time High. Keep this in mind. It would be unwise to worry about 3 cents when in matter of months prices will be at their highest, ever. Thank you for reading. Namaste.
Click Here?️ and scroll down? for the technicals, and more behind this analysis!!! ________________________________________________________ ________________________________________________________ ..........✋NFA?.......... ?Technical/Fundamental/Target Standpoint⬅️ 1.) Technical Momentum Shift: Recent trading activity suggests a bullish sentiment, with multiple attempts to flip the moving averages into a positive trend. 2.) Strong Support Level: The stock successfully defended a key support level twice recently, indicating potential strength. 3.) Accumulation Pattern: Accumulation of shares has been observed since February 3rd, 2025. 4.) Consistent Financial Performance: Revenue has shown year-over-year growth since 2019, while net income has remained relatively stable since 2021. 5.) Dividend Growth: The company's history of increasing dividends is a positive sign for investors. ?Global Market Sentiment⬅️ 1.) As we move into the historically bearish months of March and April, the market's direction in the coming weeks will be crucial. ============================== ...???Before You Go???… ============================== Leave a like? and/or comment?. We appreciate and value everyone's feedback! - RoninAITrader