Awesome Oscillator Double Stochastic Filtered Divergence Trading Strategy

Author: ChaoZhang, Date: 2024-02-27 15:51:44
Tags:

img

Overview

The Awesome Oscillator Double Stochastic Filtered Divergence trading strategy identifies potential buy and sell opportunities through detecting divergences between the Awesome Oscillator (AO) and price action, filtered by Stochastic Oscillator’s overbought and oversold conditions to improve signal reliability.

Strategy Logic

The strategy consists of the following components:

  1. Awesome Oscillator (AO) Calculation: AO is the difference between 5-period and 34-period SMAs of midpoint (HL2) to identify market momentum dynamics.

  2. Stochastic Oscillator: Used to gauge momentum and potential reversal points by comparing closing price to price range over a period. Uses 14-period Stochastic (stochK) and 3-period SMA (stochD) to detect overbought/oversold levels.

  3. Divergence Detection Logic: Simplified to when price is moving in one direction while AO moves in opposite direction. Real-world divergence detection involves more nuanced analysis.

  4. Stochastic Filtering: Signals filtered by Stochastic overbought condition for selling and oversold for buying.

  5. Signal Plotting: Confirmed signals after filtering plotted on chart as shapes.

  6. Entry Rules: Long entry on confirmed bullish signal, short entry on confirmed bearish signal.

Advantage Analysis

The strategy combines following trend and identifying reversals, with reliable signals. Advantages include:

  1. AO helps identify short-term trend changes, divergence with price provides reliable signal source.

  2. Stochastic filters avoid false signals without overbought/oversold confirmation.

  3. Combining indicators provides robust market assessment and reliability.

  4. Clear entry signals and rules, easy implementation.

  5. Reasonable indicator selection and parameters, good backtest and live performance.

Risk Analysis

Potential risks include:

  1. Simplistic divergence detection risks misjudging signals. Optimization can reduce misjudging likelihood.

  2. Static parameter settings may underperform across changing market conditions. Adaptive parameters could improve performance.

  3. Stochastic filtering may miss some profitable opportunities. Adjusting filters could capture more trades.

  4. No strict loss control mechanisms for open positions. Stop losses or position sizing rules could control risk better.

Optimization Directions

Areas for further optimization:

  1. Improve divergence signal identification logic for higher quality signals.

  2. Test different parameter combinations to find optimum parameters.

  3. Incorporate stop loss strategies to control downside on individual trades.

  4. Optimize entry sizing rules and open position management.

  5. Introduce machine learning for dynamic parameter and logic optimization.

  6. Add more data sources for multivariate factor driving.

Summary

The AO Double Stochastic Filtered Divergence strategy effectively combines trend following and reversal identification through AO divergence and Stochastic filtering. Clear rules, good backtest results, with strong practical potential. Further optimizations can yield improved simulation and live performance.


/*backtest
start: 2024-01-01 00:00:00
end: 2024-01-31 23:59:59
period: 4h
basePeriod: 15m
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/

//@version=5
strategy("Fixed AO Divergence Strategy", shorttitle="Fixed AO+Stoch", overlay=true)

// Calculate Awesome Oscillator
ao() => ta.sma(hl2, 5) - ta.sma(hl2, 34)
aoVal = ao()

// Stochastic Oscillator
stochK = ta.stoch(close, high, low, 14)
stochD = ta.sma(stochK, 3)

// Simplify the divergence detection logic
// For educational purposes, we will define a basic divergence detection mechanism
// Real-world application would require more sophisticated logic

// Detect bullish and bearish divergences based on AO and price action
bullishDivergence = (close > close[1]) and (aoVal < aoVal[1])
bearishDivergence = (close < close[1]) and (aoVal > aoVal[1])

// Stochastic Overbought/Oversold conditions
stochOverbought = (stochK > 80) and (stochD > 80)
stochOversold = (stochK < 20) and (stochD < 20)

// Filtered signals
confirmedBullishSignal = bullishDivergence and stochOversold
confirmedBearishSignal = bearishDivergence and stochOverbought

// Plot signals
plotshape(series=confirmedBullishSignal, style=shape.triangleup, location=location.belowbar, color=color.green, title="Bullish Divergence", text="BUY")
plotshape(series=confirmedBearishSignal, style=shape.triangledown, location=location.abovebar, color=color.red, title="Bearish Divergence", text="SELL")

// Strategy Entry
if (confirmedBullishSignal)
    strategy.entry("Long", strategy.long, comment="Long Entry")

if (confirmedBearishSignal)
    strategy.entry("Short", strategy.short, comment="Short Entry")


More