Here's a screenshot when I plot out some trades from a strategy. With no stop or limit, it looks like some kind of bell curve. When I add a stop, it has a tall count at the stop, and the rest looks like some kind of bell curve.
For the probability density function, I suppose the no-stop case would be:
pdf = someContinuousDistribution ( central parameter, deviation parameter )
But what would it be for the stop case? I think it would combine a discrete probability for the stop, and a distribution for the rest. This is my guess for how it would look:
pdf = p(stopped) + [ p(notStopped) * someContinuousDistribution(central parameter, deviation parameter) ]
This would say, if 40% got stopped out, then multiply the distribution function for the non-stopped by 60%; that would preserve the formula summing to 1. It seems to make sense to me, but I don't know much, it could be too simplistic.
thanks for any help or suggestions
For the probability density function, I suppose the no-stop case would be:
pdf = someContinuousDistribution ( central parameter, deviation parameter )
But what would it be for the stop case? I think it would combine a discrete probability for the stop, and a distribution for the rest. This is my guess for how it would look:
pdf = p(stopped) + [ p(notStopped) * someContinuousDistribution(central parameter, deviation parameter) ]
This would say, if 40% got stopped out, then multiply the distribution function for the non-stopped by 60%; that would preserve the formula summing to 1. It seems to make sense to me, but I don't know much, it could be too simplistic.
thanks for any help or suggestions