position sizing for volatility

Forums ProRealTime English forum ProBuilder support position sizing for volatility

Viewing 2 posts - 1 through 2 (of 2 total)
  • #124743

    Speaking about volatility and position sizing I usually just take:

    atr = averageTrueRange[20](Close)
    positionsize = account / (atr)

    and make some number up in account to fit that particular market. Anyone else have some nice algorithm for position sizing for volatility?

    #145266

    This one I almost always use:

    • Line  1:     Number of lots (default)
    • Line  2:    1=lot management enabled, 0=disabled
    • Line  3:    1=do not decrease after a loss,  0=decrease the number of lots after a loss
    • line   5:    Minimum lots allowed (can be < 1, if allowed by your broker)
    • line   6:    Maximum lots allowed
    • line   7:    DrawDown show by backtest
    • line   8:    Margin required by the broker
    • line   9:    DrawDown Multiplier (3 is the value I use by default)

    You should start with line 2 se to 0 (lot management disabled), until you have finished optimizing, then write the correct value at lines 7 and 8 and backtest it again to save it and see the results.

    You should backtest using a CAPITAL that is exactly (rounded) the one calculated at line 10 (nLots used here is the initial lot size set at line 1).

    nLots is the number of lots you want to BUY/SELLAHORT.

     

     

Viewing 2 posts - 1 through 2 (of 2 total)

Create your free account now and post your request to benefit from the help of the community
Register or Login