DojiEmoji

[KL] Mean Reversion (ATR) Strategy

DojiEmoji Atualizado   
This strategy will enter into a position when price volatility is relative high, betting that price will subsequently trend in a favourable direction.

Hypothesis: During periods of high price volatility, ATR will divert from its moving average by at least +/- one standard deviation. Eventually, ATR will revert back to the mean. However, just knowing the magnitude of increase/decrease of ATR does not give a trend signal, so we need to introduce a model in this script to predict whether the next bars will be up/down.

  • Trend Prediction: This strategy calculates the expected logarithmic return of the security (the "Drift") and considers prices to be moving in uptrend if the drift curve is upward sloping or if the drift value is positive.

Entry Conditions: Long position is entered when:
  • (a) ATR has diverted from mean by one standard deviation, and
  • (b) trend is predicted to move in our favor.

Exit Condition: When trailing stop loss is hit.

Results from backtesting against VOO (1H timeframe):
- approx 46% win rate over 491 trades, on average holding for 20 hours per trade
- price at the beginning of backtest (Jan. 2015) was $187.52, giving holding period return of ~120% had we not sold in between ("HPR of HODL'ing")
- this strategy gained ~159%, exceeding ~120% HPR of HODL'ing
Notas de Lançamento:
Minor changes:
- cleaned up spacings of codes
- uses strategy.exit() with 'close' parameter defined. This gives a more accurate report of backtested results. (previously used strategy.close(), which exited at the opening price of the next bar during stops)
- better alerts
Notas de Lançamento:
Added profit taking levels. Also amended risk the management strategy.
Changes:
- Order size is based on user-defined percentage of committed capital
- Profit taking over 3 levels based on risk to reward ratio (i.e. 1R, 2R, 3R). When a target is met at each tier, strategy will close out one third of current position size. Unreached targets will eventually be closed at the trailing stoploss price
Script de código aberto

Dentro do verdadeiro espírito TradingView, o autor deste script publicou ele como um script de código aberto, para que os traders possam compreender e checar ele. Um viva ao autor! Você pode usá-lo gratuitamente, mas a reutilização deste código em uma publicação é regida pelas Regras da Casa. Você pode favoritá-lo para usá-lo em um gráfico.

Aviso legal

As informações e publicações não devem ser e não constituem conselhos ou recomendações financeiras, de investimento, de negociação ou de qualquer outro tipo, fornecidas ou endossadas pela TradingView. Leia mais em Termos de uso.

Quer usar esse script no gráfico?