The idea is to adjust our stop sizes according to the momentum of a move... The faster it goes in our direction, the shorter we set our stops, and, if you're into scaling-in, you can add them closer together.
To that end, I set a Max and Min of BreakEven, BreakEvenProfit, JumpingStop, and TrailingStop.
I use a fast and a slow SMI (Stochastic Momentum Index/Indicator) to determine long-term direction and speed, and when they're both heading in our current direction, I use the following formula to determine stops...
Code: Select all
if(((Atr * BEAtrMultiplier) < MaxBreakEven) && ((Atr * BEAtrMultiplier) > MinBreakEven))
{
BreakEven = MaxBreakEven - (BE_Range * (MathAbs(FastSMI) / 100))
}I've coded it as an indicator for testing purposes, and whilst it is very inelegant, it works the way I coded it, I'm just not sure I coded it the way I want it to work
I thought I'd post it on here to see if better eyes and minds could make some use of the concept.
Have fun!
Radar =8^)