- Joined
- 27 November 2017
- Posts
- 1,200
- Reactions
- 1,884
For those interested I ran an optimisation on my PositionSize for one for my strategies I am playing with and bellow are the results.
Before Fixed PositionSize is 10k
After is a mixture of 5k to 15k and definitely not what I would have expected
I will check over a few different strategies as I suspect a different style of strategy will produce a different mix of PositionSize
Anyway Optimisation code used
Before / After -
Obvious change to profit but some subtle changes overall, which I will need to review.
I am not an expert with all these metrics but tend to be drawn to a couple and even these surprise me (MDD) but will be interested to see how a change in stop parameters impacts this area as well.
Gee the fun never stop, enjoy
Before Fixed PositionSize is 10k
After is a mixture of 5k to 15k and definitely not what I would have expected
VolatileBear, 15000
QuietBear, 5000
QuietBull, 15000
VolatileBull, 10000
QuietBear, 5000
QuietBull, 15000
VolatileBull, 10000
I will check over a few different strategies as I suspect a different style of strategy will produce a different mix of PositionSize
Anyway Optimisation code used
PositionSize = IIf( VolatileBear, Optimize("VolatileBear", 10000, 5000, 15000, 5000), IIf( QuietBear, Optimize("QuietBear", 10000, 5000, 15000, 5000),
IIf( QuietBull, Optimize("QuietBull", 10000, 5000, 15000, 5000), IIf( VolatileBull, Optimize("VolatileBull", 10000, 5000, 15000, 5000), 0))));
IIf( QuietBull, Optimize("QuietBull", 10000, 5000, 15000, 5000), IIf( VolatileBull, Optimize("VolatileBull", 10000, 5000, 15000, 5000), 0))));
Before / After -
Obvious change to profit but some subtle changes overall, which I will need to review.
I am not an expert with all these metrics but tend to be drawn to a couple and even these surprise me (MDD) but will be interested to see how a change in stop parameters impacts this area as well.
Gee the fun never stop, enjoy