Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

TLDR

TL;DR: The “Popularity Contest” Trading Strategy

This guide breaks down a complex trading script that uses “Volume Profiles.” We’ll skip the jargon and get straight to what it does and how you can use it.


The “Big Idea” (Core Concept)

Imagine a big house party. This strategy finds the rooms where everyone loves to hang out (like the kitchen) and the empty hallways people just walk through. It bets that the price, like a party guest, will either return to a popular room or rush through an empty hallway to get to the next one.


The Tools (Indicators)

This strategy doesn’t use common tools like RSI or Moving Averages. It builds its own from scratch.


The Good & The Bad (Pros & Cons)

The Good (Why you might like it)The Bad (Why it might frustrate you)
It’s patient. It forces you to wait for the price to come to you, like setting a trap. This stops you from chasing moves.It can be slow. The tool might only update after a great trade has already happened, like watching a replay instead of the live game.
It works best in healthy trends. It’s great at finding pullback spots in a market that’s already moving in one direction.It gets confused in “go-nowhere” markets. When the price is just chopping sideways, this strategy can give lots of false alarms.
It’s based on a solid idea. The concept of price returning to “value” is a timeless market principle, not a flashy fad.It can be wrong. Sometimes a “popular room” gets ignored completely, and the price blows right through it, leading to a loss.

Is the Code Healthy? (Quality Analysis)

The script is like a car with a powerful, custom-built engine but a few loose wires. It uses very modern and smart coding techniques that make it well-organized. However, it’s also very “heavy” and can slow down your computer.

Worse, it’s a bit fragile. It doesn’t have good error-checking, so if it sees unusual data, it can break and stop working. It also has a typo in its version number (version=6 instead of version=5), which means it won’t even run without being fixed first.


How to Make it Better (Recipe Tweaks)

Here are two simple ideas to make the strategy more reliable.

  1. Add a “Current Detector”: The strategy works best when you “swim with the current.” Add a simple long-term trend line to your chart (like a 200-period moving average). If the price is above the line (uptrend), only take the “buy” signals. If it’s below the line (downtrend), only take the “sell” signals. This stops you from fighting the market’s main direction.

  2. Add a “Boring Market” Filter: This strategy hates boring, sideways markets. Add a tool that measures market “energy” (like the ADX indicator). If the energy is low (e.g., ADX below 20), the strategy should just sit on the sidelines. This helps you avoid getting chopped up by meaningless price wiggles.


The “Cheat Sheet” (Blueprint for a “Buy” Trade)

This is a 3-step guide for using the strategy to find a potential “buy” trade.

  1. Find the Zone: Look at the “Main Hangout Zone” from a recent period (like yesterday or the last 4 hours). Identify its bottom edge (the Value Area Low).

  2. Wait for the Fake-Out: Watch the price. You want to see it dip below the bottom edge of the zone and then quickly pop back inside it, all within the same price candle. This shows that sellers tried to push the price down but failed.

  3. Press Buy: When that candle closes back inside the zone, that’s your signal. You’re betting that the price will now travel back up toward the “Party’s Center” (the Point of Control).