Setup 9.1 Larry WilliamsThis Strategy was created according to Larry Williams 9.1 Setup. This is based on the Exponential Moving Average of 9 days. Although this might be used in any timeframe, it is most common on the Daily Timeframe.
I have developed this strategy to be used on both Long and Short Position, using the drop down list.
- Setup 9.1 (Lond Position)
It looks for tickers where the close is below EMA9. Once close gets above EMA9 we set this candle as 9.1. The entry point happens one tick above the 9.1 candle. The stop loss is set to be one tick below the lowest of this candle. The exit takes place once close is below EMA9
- Setup 9.1 (Short Position)
It looks for tickers where the close is above EMA9. Once Close gets below EMA9 we set this candle as 9.1. The entry point happens one tick below the 9.1 candle. The stop loss is set to be one tick above the highest of this candle. The exit takes place once close is above EMA9
To cut the noise and have a better trend direction on the EMA9, on both Long and Short, I used the code below for the setup.
setup91B = fastMA >fastMA and fastMA >fastMA and fastMA >fastMA and fastMA >fastMA and fastMA fastMA
setup91S = fastMA fastMA and close > fastMA and close < fastMA
If you have any questions, let me know !
Larrywilliamsstrategy
Williams Accumulation/DistributionThis is an indicator described by Larry Williams in one of his books. Larry won the 1987 World Cup Championship of Futures Trading, where he turned $10,000 to over $1,100,000 in a 12-month competition with real money.
Larry used this indicator to track divergences between price action and volume, which he called patterns of accumulation (bullish divergence) and distribution(bearish divergence). Its logic is similar to On Balance Volume(OBV), where it accumulates up and down volume in a single line, but also takes into account the size of the candle in its calculation, by taking the difference between the open and close, and the high and the low.
Enjoy!