Tuesday, March 17, 2026
HomeNews26 Years Of Brutal Trading Advice in 23 Minutes

26 Years Of Brutal Trading Advice in 23 Minutes

Date:

Related stories

Zenas BioPharma, Inc. (ZBIO) Reports a Net Loss for Q4 FY25

$ZBIO Zenas BioPharma, Inc. (ZBIO) reported Q4 2025 GAAP...

Solana ETF Inflows Grow: Will SOL Finally Break $100?

SOL is trading dangerously close to $93 caught...

The DeepSeek Trading Bot Doubled Its Money. Now You Can Use Its Strategies

🌌 LIMITLESS HQ: LISTEN & FOLLOW HERE ⬇️ ------ In this...

BTC gives up early gains, XRP, SOL, DOGE follow suit

Bitcoin BTC$73,931.21 has fallen back below $75,000, highlighting...



Don’t trade alone —trade live with us on Zoom every day👉
Get the FREE weekly Gains Guide watchlist here 🚀
#tradingstrategy #daytrading #trading

⚠️ Disclaimer: My results and risk tolerance are not typical and should not be expected by others. This video is for educational and entertainment purposes only. I am not a financial advisor. Trading involves risk, and past performance does not guarantee future results.

26 Years Of Brutal Trading Advice in 23 Minutes

Time Codes
0:00 Intro
0:46 You Are What You Are
2:23 Simple Stupid Always Wins
4:40 One Asset
5:46 Screentime Is Your BFF
7:18 Position Size Is Also Your BFF
9:16 Do Not Focus On Money, Focus On Making Good Trades
11:13 Fall In Love With Losing
13:32 If You Don’t Rank You Won’t Bank
15:52- Write It Down
18:25 Rules
19:56 We Need Each Other
21:49 The Last Step Is The Hardest

Disclaimer: My results and risk tolerance are not typical and should not be expected by others. This video is for educational and entertainment purposes only. I am not a financial advisor. Trading involves risk, and past performance does not guarantee future results.

source

Latest stories

41 COMMENTS

  1. Crypto profit starts with one rule — protect what you have.

    Every trade I take has a stop before it has a target.

    You can’t win every move, but you can survive every loss.

    That’s how the game is played — not by chasing green candles, but by cutting red ones fast.

    Small losses are lessons. Big losses are choices.

  2. Trading advice for anyone new to crypto: try not to focus too much on the 1-minute charts. When I first started trading, I made the mistake of reacting to every small price movement, and it cost me a lot of money. Constantly watching the smallest timeframes can create unnecessary stress and lead to impulsive decisions!

  3. Thanks for the updates.I really appreciate your clear and simple breakdow, I lost so much money on stock market but now making around €20k to €25k every week trading different stocks and cryptos.

  4. Trading is mostly psychological game, the small portion includes only mechanics, the psychological part is what will determine how well u do in the markets, thats the real part you got to conquer if you wanna win at this, otherwise no amount of knowledge or strategies in the world will save you in the market

  5. Trading advice for anyone new to crypto: try not to focus too much on the 1-minute charts. When I first started trading, I made the mistake of reacting to every small price movement, and it cost me a lot of money. Constantly watching the smallest timeframes can create unnecessary stress and lead to impulsive decisions.

  6. For anyone new to crypto: stop looking at the 1-minute charts. I lost so much money early on because I was reacting to every tiny wiggle. Once I started looking at the higher timeframes and understanding institutional flow, my stress levels dropped and my hits started landing. Trading is 90% patience and 10% execution.

  7. THIS IS A LOAD OF BULLSHIT – INSTITUTIONAL FUTURES TRADERS ALL FOLLOW THE SAME METHOD – GOOD LUCK GETTING THEM TO SHOW YOU -…………. IM NOT AND I WON'T(SORRY I HAVE TO MAKE A LIVING ) ALSO IF YOU KNOW HOW YOU WONT HAVE ANXIETY .. ITS THAT GOOD 10 YEARS OF TRIAL AND ERROR

  8. One thing i learned: there's nothing wrong with taking 1:1 trades if you're going with the trend. Higher risk to reward trades can be frustrating and introduce unwanted variance to your results.
    I'd rather win less more often than constantly swing for the fences.
    It's all fun and games until you have 9 or 10 losses in a row because you were trying to get those 1:5 trades.
    At least that's what works for me.

  9. Great video….so true….I lost bank ac 4 times with forex…and now 10 years later after dedication and very good risk management..I can read price action very well…I don't get greedy and I manage the fear well with exit points ..and now I constantly do 35k a week profit…it's a journey

  10. haven't seen everything you've put out but you really helped me with the day high day low and midpoint so I programmed it for trading view and added a little to it. A midpoint between those 3 lines and it does have a purpose with some indicators.

    //@version=6

    indicator("DAY TRADE SUPPORT AND RESISTNACE", overlay=true, max_lines_count=500)

    tz = "America/Los_Angeles"

    // Get current bar's calendar day and time in PT

    currY = year(time, tz)

    currM = month(time, tz)

    currD = dayofmonth(time, tz)

    currW = dayofweek(time, tz)

    currH = hour(time, tz)

    // Define a synthetic "trading day ID" (handles Friday + Sunday as same day)

    getTradingDay() =>

    isSunday = currW == dayofweek.sunday

    isSundayEvening = isSunday and currH >= 15

    isFriday = currW == dayofweek.friday

    // Treat Sunday after 3pm PT as part of Friday's session

    isWeekendSession = isSundayEvening

    dayId = isWeekendSession ? currD – 2 : currD

    monthId = isWeekendSession ? currM – (currD == 1 ? 1 : 0) : currM

    yearId = isWeekendSession and currM == 1 and currD <= 2 ? currY – 1 : currY

    str.tostring(yearId) + "-" + str.tostring(monthId) + "-" + str.tostring(dayId)

    tradingDay = getTradingDay()

    // Today's 00:00 and 23:59 PT timestamps (actual calendar day)

    todayStart = timestamp(tz, currY, currM, currD, 0, 0)

    todayEnd = timestamp(tz, currY, currM, currD, 23, 59)

    // Persistent state

    var string lastTradingDay = ""

    var float dayH = na

    var float dayL = na

    var float pH = na

    var float pL = na

    var float pM = na

    var line[] lines = array.new_line()

    newDay = lastTradingDay != tradingDay

    if newDay

    if not na(dayH) and not na(dayL)

    pH := dayH

    pL := dayL

    pM := (pH + pL) / 2

    // Calculate midpoints for the grey lines (25% and 75% levels)

    greyLine1 = pL + (pM – pL) / 2 // 25% level (between pL and pM)

    greyLine2 = pM + (pH – pM) / 2 // 75% level (between pM and pH)

    // Draw yellow lines (same as before)

    l1 = line.new(x1=todayStart, y1=pH, x2=todayEnd, y2=pH, xloc=xloc.bar_time,

    extend=extend.none, color=color.orange, width=1, style=line.style_solid)

    l2 = line.new(x1=todayStart, y1=pM, x2=todayEnd, y2=pM, xloc=xloc.bar_time,

    extend=extend.none, color=color.orange, width=1, style=line.style_solid)

    l3 = line.new(x1=todayStart, y1=pL, x2=todayEnd, y2=pL, xloc=xloc.bar_time,

    extend=extend.none, color=color.orange, width=1, style=line.style_solid)

    // Draw medium grey lines between the yellow lines

    g1 = line.new(x1=todayStart, y1=greyLine1, x2=todayEnd, y2=greyLine1, xloc=xloc.bar_time,

    extend=extend.none, color=color.gray, width=1, style=line.style_solid)

    g2 = line.new(x1=todayStart, y1=greyLine2, x2=todayEnd, y2=greyLine2, xloc=xloc.bar_time,

    extend=extend.none, color=color.gray, width=1, style=line.style_solid)

    // Store all lines for cleanup

    array.push(lines, l1)

    array.push(lines, l2)

    array.push(lines, l3)

    array.push(lines, g1)

    array.push(lines, g2)

    if array.size(lines) > 500

    for _ = 0 to 4 // Now deleting 5 lines at a time (3 yellow + 2 grey)

    line.delete(array.shift(lines))

    // Start new trading day

    dayH := high

    dayL := low

    lastTradingDay := tradingDay

    else

    dayH := na(dayH) ? high : math.max(dayH, high)

    dayL := na(dayL) ? low : math.min(dayL, low)

  11. I started trading with $5k just last week and now I've hit $14,590. I was having this exact conversation with my son the other night – generational wealth isn't just about getting money. It's about teaching everyone not only how to make it, but also how to maintain it. It does no good for me to provide for my family if they don't understand how to manage and sustain it. That's why I really love this video

  12. @syedmohd4707

    1 day ago (edited)

    If you can master, unprofitable

    Trades…YOU MAY, JUST MAYBE

    YOU Could make a lot of money.

    Every move is a risk, so more trades

    You can earn and learn more after

    You mastered UNPROFITABLE

    TRADES…😀 THE SAME Time EXECUTE

    As much as you like for your awesome

    Profit trades, that's what the professional

    Traders made so much money. Try it,

    Ok guy, if you really wanted to succeed

    THE BEST PART..do not give up, all trades

    Have risk, Including all your Profit trades.

LEAVE A REPLY

Please enter your comment!
Please enter your name here