Hi, have anyone of you looked into volatility based Positionsizing? I have played around a bit, but with no a huge success yet. Here is my current code, let me know if you have ideas for improvements or other code snippets for this?
Vol Targ PositionSize
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//--- Parameters
riskPercent=1// Risk per trade
atrLength=14
atrMultiplier=2
minContracts=0.5//Min amount of contract you wanna take per trade
maxContracts=2// Max amount of contract you wanna take per trade
//--- ATR-based stop loss
atr=AverageTrueRange[atrLength]
stopLoss=atr*atrMultiplier
riskInPoints=close*(riskPercent/100)
//--- Raw positionsize
rawSize=riskInPoints/stopLoss
//--- Normalizing
minRaw=0.5
maxRaw=10
normalized=(rawSize-minRaw)/(maxRaw-minRaw)
normalized=max(0,min(1,normalized))// keep within min max contract
To help us continually offer you the best experience on ProRealCode, we use cookies. By clicking on "Continue" you are agreeing to our use of them. You can also check our "privacy policy" page for more information.Continue