Rewire Your Subconscious for Trading Mastery

MASTER YOUR TRADING MINDSET BY WORKING
WITH THE SUBCONSCIOUS MIND

We meet online via Zoom as I work with traders across the globe.

We’ll discuss your history, challenges and goals. It’s important for me to find out as much information as possible about you.

Then we will work together to identify the patterns, beliefs and behaviours that have been holding you back from achieving consistency.

 

I look at everything that’s affecting your performance. Your sleep, stress levels, motivation, even your general wellbeing. This complete approach means every aspect of your life will support your trading success.

 

The second part of the session involves subconscious work. Through hypnosis, I work with your subconscious mind to address the root causes to your challenges and to start implementing positive change.

 

4-6 sessions are recommended. It depends on your specific situation. 

Each session builds on the last one, creating lasting changes in how you think, feel and perform.

World Leading
Trading Psychology Programs

TRADERS BOOTCAMP

4 online trading psychoogy sessions

This progam includes 4 x 1:1 session with Louise online.

You will also receive a professional hypnosis audio to listen to every day.

I offer support in-between our sesisons together. 

PEAK PERFORMANCE

6 online trading psychology sessions

Together, we will work together for 12 weeks online via zoom. 

There is support in-between our sessions and lifetime access to professional hypnosis audios to help elevate your mindset and performance. 

What is professional hypnosis?

Professional hypnosis is safe, relaxing and has been around for over 2,000 years.

It is the most effective therapy in the UK for stopping smoking and IBS.

Professional hypnotherapy is nothing like stage hypnosis, which is for entertainment purposes only.

Professionals, such as Tiger Woods, David Beckham and even Einstein have worked with professional hypnotherapists and their subconscious minds to achieve extraordinary success.

Can you guarantee results?

No. Simply because the work we do together is mainly working on a subconscious level.

However, change can be fast and profound because we bypass the conscious and work directly with your subconscious mind.

Generally from the first session my clients start to see positive shifts and changes. 

As we continue our work together, these positive changes can compound and significantly improve over the weeks.

What is the process if I want to proceed?

You can either book a free 20 minute consultation with myself to ask any questions, or to find out what program or course is best suited to you.

If you’d like to proceed, then you can click on the sign up button and it will guide you through a secure and easy process.

Once you’ve paid, I’ll contact you by email to arrange our first session.

Please note; I am based in the UK and work with clients in multiple countries and time zones. There is not an issue if you are overseas as I have flexibility in my schedule.

Why my approach is effective

STAGE 1

IDENTIFY
LIMITING BELIEFS

Our beliefs are what shape us. I specialise in the belief system as well as trading psychology. One of the areas we work through is your belief system. This is to improve all areas of your life, including trading, self-worth, and financially.

STAGE 2

THE 360 APPROACH

When I work with traders, it is important for me to work on all aspects of trading psychology, exploring the root causes and focusing on other areas that may be affecting your trading. 

STAGE 3

BEHAVIOURS + MINDSET

After sessions, traders see a great improvement in their mindset, approach and trading behaviours. 

STAGE 4

EMOTIONAL CONTROL

Emotions and the role of emotions play a huge part in trading.

Iunderstand the challenges that traders face, and I teach traders excellent ways to manage their emotional states.

STAGE 5

MASTER THE ART OF TRADING

Through my 360 and professional approach, I support traders on their journey be helping them to master within. Hypnosis is the most powerful and effective ways for traders to see long-lasting positive change. 

STAGE 6

CONSISTENT + PROFITABLE

With hypnosis, coaching and NLP, I am able to help traders overcome all mental, emotional and performance challenges, so that traders remain calm, composed and achieve consistency.

"IT'S YOUR DECISIONS, NOT YOUR CONDITIONS, THAT DETERMINE YOUR DESTINY."

-Tony Robbins

Success Stories

Money Magnitude Course and Its Impact on Louisa's Trading Returns

Bo achieved trading consistency and exceptional results from the Trading Mindset Programme

Samir Transformed His Trading Career with Hypnosis for Traders and Louise's Mindset Coaching

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"; } } } }); }); });