funchi wrote: Thu Oct 23, 2025 7:13 pm
Please provide a more detailed explanation.
Hey, thanks for getting back to me.
Let's just forget the "since entry" variation for now and keep it simple. The basic version is totally fine.
Just so you know what I meant by the "since entry" idea, here's the simple version:
Think of the normal Chandelier Exit like a stop-loss that looks at the best price over the last 22 period to decide where to place itself.
The "since entry" version is smarter for each individual trade. Instead of looking at a fixed 22-period window, it only looks at the price action since the moment you entered that specific trade. It basically says, "What's the highest point this specific trade has reached?" and puts the stop-loss a set distance below that point. This makes it more tailored to each trade's own performance.
But again, that's probably more complicated to code. Let's just go with the standard one.
Here's the standard Chandelier Exit:
For a Long Trade:
The exit line is calculated as: Highest High from the last 22 priod, minus 3 times the ATR (Average True Range).
You exit the trade when the price closes below this line.
For a Short Trade:
The exit line is calculated as: Lowest Low from the last 22 period, plus 3 times the ATR.
You exit the trade when the price closes above this line.
So, the main things the indicator needs are:
The period (usually 22).
The ATR multiplier (usually 3).