Trading Psychology Expert

I have one mission: To help traders achieve lasting consistency

Meet Louise

I’m Louise Nonweiler, a world-leading psychology expert with over a decade of experience helping traders achieve success and lasting profitability.

I’m the founder of Hypnosis for Traders and Trader365® app.

Over the years, I’ve developed a series of award-winning trading psychology courses that have transformed the performance and mindset of traders worldwide — empowering them to master their emotions, reprogram limiting beliefs, and achieve sustainable profitability. My greatest passion is helping traders uncover the real reasons behind their lack of consistency and guiding them toward extraordinary trading success through proven, science-backed mindset strategies. 

TRADING PSYCHOLOGY

Having successfully helped over 2,000 traders, and received 29 international awards, I have established myself as a leading authority in trading psychology.

Our world-leading trading psychology courses are designed to work with the 95% of trading behaviours that operate at the subconscious level—where true, lasting change happens. With 8 premium online courses targeting every key area of trader mindset and performance, we provide a complete transformation framework that benefits traders of all experience levels, from beginners to seasoned professionals

Each course combines advanced subconscious reprogramming with practical trading psychology tools to help you achieve consistency, confidence, and emotional mastery in the markets.

UK + GLOBAL AWARDS

  • Clinical hypnotherapy Expert of the Year in England (2026 Corporate INTL Global Awards)

  • Trading Education Service – South West England (Prestige Awards) 2025

  • UK Enterprise Awards Best Trading Psychology Expert 2025

  • Clinical hypnotherapy Expert of the Year in England (2025 Global Advisory Experts Annual Awards)

  • Hypnotherapist & Coach of the Year 2025

  • Trading Psychology Hypnotherapist and Coach of the Year (Global Advisory Expert Annual Awards) 2025
  • Clinical Hypnotherapy Provider of the Year (Corporate INTL Awards) 2025

  • Best Trading Psychology Expert (Global Excellence Awards) 2024
  • Leading Trading Psychology Expert UK (Global Health + Pharma Annual Awards) 2024
  • Leading Trading Psychology Expert (Global Excellence Awards) 2024
  • Clinical Hypnotherapist of the Year (SME Enterprise) 2023
  • Business Woman of the Year (CEO Today) 2023
  • Trading Psychologist of the Year (SME Award) 2023
  • CEO Global Awards Entrepreneur (CEO Today) 2022
  • Business Woman of the Year Award (CEO Today) 2022
  • Hypnotherapist of the Year (Prestige Awards, UK) 2021
  • Most Influential Woman in Hypnotherapy (Acquisition Awards) 2021
  • Global Award Coaching (CEO Today) 2021
  • Business Women of the Year Awards (CEO Today Magazine) 2022
  • Global Award (CEO Today) 2020
  • Life Coach of the Year (London Prestige Awards) 2019
  • CEO United Kingdom Award (CEO Today) 2019
  • European Business Award (CEO Today) 2019
  • Global Business Award  (CEO Healthcare) 2019
  • European Business Award (CEO Today) 2018
  • Clinical Hypnotherapist of the Year (Business Excellence Award) 2018
  • Most Inspirational Life Coach (Business Excellence Award) 2017
  • Award for Alternative Therapy (Business Excellence Award) 2017
  • Most Outstanding Life Coach (AI Excellence Award) 2016

ACCREDITATIONS

  • Accreditation in Clinical Hypnotherapy
  • Master Life Coach
  • NLP Practitioner
  • Mindfulness Practitioner
  • Diploma in Financial Trading
  • Body Language Expert Accreditation
  • Member of the GHR (General Hypnotherapy Register)

Clinical hypnotherapy Expert of the Year in England – 2025

UK Enterprise Awards (Best Trading Psychology Expert)

Clinical hypnotherapy Expert of the Year in England – 2025

GHP Mental Health Awards Trading Psychology Hypnotherapist

Clinical Hypnotherapy Provider
of the Year (Corporate INTL Awards) 2025

Best Trading Psychology Expert (Global Excellence Awards) 2024

Leading Trading Psychology Expert UK (Global Health + Pharma Annual Awards) 2024

Leading Trading Psychology Expert (Global Excellence Awards) 2024

Clinical Hypnotherapist of the Year (SME Enterprise) 2023

Business Woman of the Year
(CEO Today) 2023

CEO Global Awards Entrepreneur
(CEO Today) 2022

Business Woman of the Year
Award (CEO Today) 2022

Hypnotherapist of the Year
(Prestige Awards, UK) 2021

Most Influential Woman in
Business(Acquisition International)
2021

Global Award Coaching
(CEO Today) 2021

Business Women of the Year
Awards (CEO Today Magazine)
2022

Global Award (CEO Today)
2020

Life Coach of the Year
(London Prestige Awards) 2019

CEO United Kingdom Award (CEO Today) 2019

European Business Award (CEO Today) 2019

Global Business Award (CEO Healthcare) 2019

European Business Award (CEO Today) 2018

Clinical Hypnotherapist of the Year (Business Excellence Award) 2018

Most Inspirational Life Coach (Business Excellence Award) 2017

Award for Alternative Therapy (Business Excellence Award) 2017

Most Outstanding Life Coach (AI Excellence Award) 2016

Ranked No.1 Hypnotherapist in London 2022

Most Inspirational Life Coach (Business Excellence Award) 2017

What Our Attendees Are Saying:

My Background

My passion for helping traders has evolved over time as Hypnosis for Traders has become a worldwide and reputable company, which exclusively helps traders achieve profound success.

When I’m not working with clients, or on trading projects or collaborations, I like to spend time in nature, on the water paddle boarding, travelling and spending time with friends and family. 

100% Positive Feedback

document.addEventListener("DOMContentLoaded", function () { if (typeof gsap === 'undefined' || typeof ScrollTrigger === 'undefined') { console.error('GSAP or ScrollTrigger is not loaded'); return; } gsap.registerPlugin(ScrollTrigger); const cards = gsap.utils.toArray(".stack-card"); if (cards.length === 0) return; const lastCard = cards[cards.length - 1]; const stackWrapper = document.querySelector(".stack-wrapper"); const nextSection = stackWrapper?.nextElementSibling; // Animation settings const scrollDistancePerCard = 400; // Scroll distance for each card animation const cardScale = 0.94; // Scale for cards that move up const cardMoveY = -120; // How much cards move up // Get the tallest card height to ensure full visibility let maxCardHeight = 0; cards.forEach(card => { const cardH = Math.max(card.scrollHeight, card.offsetHeight, card.clientHeight); if (cardH > maxCardHeight) maxCardHeight = cardH; }); // Calculate total wrapper height needed for all sequential animations const totalScrollDistance = cards.length * scrollDistancePerCard; // Set wrapper height to accommodate all sequential scroll animations if (stackWrapper) { const wrapperHeight = totalScrollDistance + maxCardHeight + 300; stackWrapper.style.height = wrapperHeight + "px"; stackWrapper.style.minHeight = wrapperHeight + "px"; } // Track cumulative scroll offset for sequential animation let cumulativeOffset = 0; cards.forEach((card, i) => { const isLastCard = i === cards.length - 1; // Calculate start and end points for sequential animation // Each card starts after the previous one finishes const cardStartOffset = cumulativeOffset; const cardEndOffset = cumulativeOffset + scrollDistancePerCard; // Update cumulative offset for next card cumulativeOffset += scrollDistancePerCard; gsap.to(card, { y: cardMoveY, scale: isLastCard ? 1 : cardScale, scrollTrigger: { trigger: stackWrapper, start: `top+=${cardStartOffset} top+=120`, end: `top+=${cardEndOffset} top+=120`, scrub: true, onLeave: () => { if (isLastCard && stackWrapper) { // Release the last card first card.classList.add("released"); stackWrapper.classList.add("collapsed"); // Remove spacing card.style.marginBottom = "0"; card.style.paddingBottom = "0"; stackWrapper.style.marginBottom = "0"; stackWrapper.style.paddingBottom = "0"; // Ensure card overflow is visible card.style.overflow = "visible"; card.style.maxHeight = "none"; // Use double requestAnimationFrame to ensure DOM is fully updated requestAnimationFrame(() => { requestAnimationFrame(() => { // Get the card's full height - use scrollHeight for complete content const cardFullHeight = Math.max( card.scrollHeight, card.offsetHeight, card.clientHeight ); // Get wrapper's current top position const wrapperRect = stackWrapper.getBoundingClientRect(); const wrapperTop = wrapperRect.top + window.scrollY; // Get card's current position relative to wrapper const cardRect = card.getBoundingClientRect(); const cardTop = cardRect.top + window.scrollY; const cardOffsetFromWrapper = Math.max(0, cardTop - wrapperTop); // Calculate wrapper height: card offset + full card height + generous buffer const wrapperHeight = cardOffsetFromWrapper + cardFullHeight + 100; stackWrapper.style.height = wrapperHeight + "px"; stackWrapper.style.minHeight = wrapperHeight + "px"; stackWrapper.style.maxHeight = "none"; // Force a reflow to ensure height is applied stackWrapper.offsetHeight; }); }); // Ensure next section starts right after with no gap if (nextSection) { nextSection.style.marginTop = "0"; nextSection.style.paddingTop = "0"; nextSection.style.position = "relative"; nextSection.style.zIndex = "10"; } } }, onEnterBack: () => { if (isLastCard && stackWrapper) { // Restore sticky behavior card.classList.remove("released"); stackWrapper.classList.remove("collapsed"); // Restore wrapper height let maxCardHeight = 0; cards.forEach(c => { const cardH = Math.max(c.scrollHeight, c.offsetHeight, c.clientHeight); if (cardH > maxCardHeight) maxCardHeight = cardH; }); const totalScroll = cards.length * scrollDistancePerCard; const wrapperHeight = totalScroll + maxCardHeight + 300; stackWrapper.style.height = wrapperHeight + "px"; stackWrapper.style.minHeight = wrapperHeight + "px"; } } } }); }); });