John Ehlers’ Every Little Bit Helps

Averaging The Open And Close To Reduce Noise

The importable  EDS file based on John Ehlers’ article in the March 2023 issue of Stocks & Commodities, “Every Little Bit Helps,” can be obtained on request via rdencpa@gmail.com. John notes ‘It’s simple but makes a noticeable improvement: You can reduce noise in the data by using an average of the open and close instead of using only the closing price.’ The code is also available below.

!Every Little Bit Helps
!Author: John F. Ehlers, TASC Mar 2023
!Coded by: Richard Denning, 1/12/2023

!Data Sampling Test
!(c) John Ehlers 2022

!INPUTS:
W1 is 14. !Wilder RSI length
W2 is 14. !Ehlers RSI length

!RSI Wilder code:
U is [close]-val([close],1).
D is val([close],1)-[close].
L1 is 2 * W1 – 1.
AvgU is ExpAvg(iff(U>0,U,0),L1).
AvgD is ExpAvg(iff(D>=0,D,0),L1).
RSIwilder is 100-(100/(1+(AvgU/AvgD))).

!Ehlers RSI code:
OCavg is ([open] + [close])/2.
Uoc is OCavg-valresult(OCavg,1).
Doc is valresult(OCavg,1)-OCavg.
L2 is 2 * W2 – 1.
AvgU2 is ExpAvg(iff(Uoc>0,Uoc,0),L2).
AvgD2 is ExpAvg(iff(Doc>=0,Doc,0),L2).
RSIoc is 100-(100/(1+(AvgU2/AvgD2))).

!CTest is RSIwilder.
!OCTest is RSIoc.

BuyRSIwilder if RSIwilder < 20 and valrule(RSIwilder >= 20,1).
ExitRSIwilder if RSIwilder > 80 or {Position days}>=20.

BuyRSIoc if RSIoc < 20 and valrule(RSIoc >= 20,1).
ExitRSIoc if RSIoc > 80 or {Position days}>=20.

Code for the author’s indicators are set up in the EDS code file. Figure 7 shows the EDS module backtest results using the RSI original indicator. Figure 8 shows the EDS module backtest results using the modified version of the RSI indicator over a 10-year period using NASDAQ 100 stocks. The comparison suggests that some of the metrics improve using the modified version and a few are worse.

The system rules are:

  • Buy when the RSI crosses down below 20
  • Sell when the RSI crosses above 80 or after 20 trading days
FIGURE 7: AIQ. This shows example backtest results for classic RSI trading system rules, based on closing data, over a 10-year period using NASDAQ 100 stocks.
FIGURE 8: AIQ. This shows example backtest results for the RSI trading system rules, this time based on data that averages the open and close instead of using just the closing price data, over a 10-year period using NASDAQ 100 stocks.

An Adaptive Moving Average For Swing Trading

The importable  EDS file based on Scott Cong’s article in the May 2023 issue of Stocks & Commodities magazine, “An Adaptive Moving Average For Swing Trading,” can be obtained on request via rdencpa@gmail.com.

In this article, Scott proposes a new adaptive moving average (AMA). It adjusts its parameters automatically according to the volatility of market, tracking price closely in trending movement, and staying flat in congestion areas. The new AMA is well-suited for swing trading.

The code is also available below.

Code for the author’s indicator as shown below is set up in the downloadable EDS code file.

!ADAPTIVE MOVING AVERAGE FOR SWING TRADING
!Author: Scott Cong, TASC May 2023
!Coded by: Richard Denning, 03/14/2023

!INPUTS:
Len is 20.

!CODING ABREVIATIONS:
H is [high].
L is [low].
C is [close].
C1 is val([close],1).

TR is Max(H-L,max(abs(C1-L),abs(C1-H))).
Effort is sum(TR,Len).
Result is highresult(H,Len) – lowresult(L,Len).
alpha is Result / Effort.
beta is 1 – alpha.

DaysInto is ReportDate() – RuleDate().
Stop if DaysInto > Len*2.
stopAMA is iff(stop,C, AMA).
AMA is alpha * [close] + beta * valresult( stopAMA, 1).
ESA is expavg(C,Len).

The figure below shows a chart of Broadcom (AVGO) along with the AMA[20] indicator (the red jagged line) and an exponential moving average indicator [20] (the green smooth line).

Getting Started Right with WinWayCharts + Developing a Mindset for Trading

Thank you for attending the May 24, 2023 webinar. If you missed this Zoom event, don’t worry, the recording is now available from the link at the end of this e-mail. (FYI it expires on June 6, 2023).

In this hour-long session, Ray Foreman, UK Director of WinWayCharts covered;

Getting Started Right with WinWayCharts – Making the Most of Your WinWayCharts – An hour-long session with UK Director Ray Foreman covering the power features in your WinWayCharts platform – great for new clients and those getting started.

Developing a Mindset for Trading – An hour-long session with Steve hill, founder of Winwaycharts. In this session, Steve will reveal the key mindful factors that contribute to successful trading.

Here’s the recording link
https://lnkd.in/g7y_6463

Want to try WinWayTradingExpert Pro – try us for $1
https://lnkd.in/gN6uVTQD

Getting Started Right with WinWayCharts and ETFs to trade Everything

If you missed this April 27, 2023 Zoom event, don’t worry, the recording is now available from the link at the end of this post. (FYI it expires on May 10th).

In this 2-hour session, Ray Foreman, UK Director of WinWayCharts covered

Getting Started Right with WinWayCharts – Making the Most of Your WinWayCharts – An hour-long session with UK Director Ray Foreman covering the power features in your WinWayCharts platform – great for new clients and those getting started.

In the second half Steve Hill, founder of WinWayChartss built a list of ETFs to trade just about everything and ran it through analytical tools.

Steve also created data files and list files for the ETFS. These are zipped and available below

ETF data files are here – unzip to your /wintes32/tdata folder. Then go to Data Manager, Utilities, Rebuild Master Ticker List.

ETF List files are here – unzip these files to your /wintes32 folder.

Here’s the recording link

https://us02web.zoom.us/rec/share/vAJEkEksyl1h2lk6UHICHDnMjOPI0z01CCnQcJFFtqwv7bNwAAWe-ajzde4UPl5H.roJlWdDr7Tx4Iunh

Double Bottoms and Tops – a scan you can run in your WinWayCharts EDS

Thank you for your continued support of WinWayCharts services. Recently we have been working on an EDS scan to find double tops and bottoms.  We’d like to share with you the progress and how to add this to your WinWayCharts. This is the code used in the scan (you don’t need to know the code but it’s there for your information).

There’s always room for improvement, but you can get a hold of this scan. This file is available for download from here

This may save to a download folder on your system. We suggest you move it to the path  C:/wintes32/EDS strategies/Chart Pattern Strategies folder.

To run this strategy automatically after your nightly download of data

– Open Data Retrieval, and select the EDS Post Processing tab.
– Select add, and in the Open, Look in C:/wintes32/EDS strategies/Chart Pattern Strategies folder for db3.EDS
– Select Open and the strategy will run every night for you.

Here’s the results on the Sp1500 run on 1/3/2023

 

While not perfect, we hope this scan will be of use to you in your trading process.

 

Short-Term Continuation And Reversal Signals

In her article in the December 2022 issue of Stocks and Commodities, “Short-Term Continuation And Reversal Signals,” Barbara Star describes modifications to the classic directional movement indicator (DMI) and commodity channel index (CCI) that can aid in more easily identifying price reversals and continuations in a trend. Traditionally, the DMI is comprised of two lines: a positive line (+DI) and negative line (−DI).

In her article, Star creates a DMI oscillator by subtracting −DI from +DI. Historically, the DMI uses a default length of 14. In the article, this has been shortened to 10. The CCI has also been adjusted in the article to use a length of 13 instead of the usual 14 or 20. The oscillator is setup using an AIQ Color Study

The importable WinWayCharts EDS file can be obtained on request via email to info@TradersEdgeSystems.com. The code is also shown here:

! Short-Term Continuation And Reversal Signals 
! Author: Barbara Star, TASC Dec 2022 ! Coded by: Richard Denning, 10/21/2022 
C is [close]. 
H is [high]. 
L is [low]. 
H1 is valresult(H,1). 
H2 is valresult(H,2). 
L1 is valresult(L,1). 
L2 is valresult(L,2). 
GreenDMI if [DirMov] > 0. 
RedDMI if [DirMov] < 0. 
StartOfDownTrend if C < simpleavg(C,18) and [DirMov] < 0 and H < H1 and H1 > H2. 
StartOfUpTrend if C >= simpleavg(C,18) and [DirMov] >= 0 and L > L1 and L1 < L2. 
GreenTrend if C >= simpleavg(C,18) and [DirMov] >= 0. 
RedTrend if C < simpleavg(C,18) and [DirMov] < 0.

Code for the author’s color study is set up in the WinWayCharts EDS code file. Figure 7 shows the color studies set up in the charts module. Figure 8 shows the color studies on a chart of Apple, Inc. (AAPL). The black bars are potential entry points in the downtrend.

Sample Chart

FIGURE 7: WinWayCharts. The color bar setup in the charts module is demonstrated.

Sample Chart

FIGURE 8: WinWayCharts This shows an example of the color studies applied to a chart of Apple, Inc. (AAPL) with a DMI histogram and an 18-bar simple moving average.

—Richard Denning
info@TradersEdgeSystems.com
for WInWayCharts

Market Timing – confirmed or not makes a big difference

it’s been a challenging market this year, and making trading decisions has never been easy. Which direction the market is likely to move plays a huge part in stock trading decisions.

The Expert Rating system on the market with its combination of 400 rules on the Dow 30 index and the NYSE internals has always provided us an early indication of direction changes.

No system is infallible, and when the Expert System on the market was created, we noticed that ratings of 95 or higher to the upside or downside (maximum rating is 100 btw) were significant. We also noticed a marked improvement in the accuracy of the ratings if we used a confirmation technique with a momentum indicator.

After much research, we discovered that the Phase Indicator (a version of a MACD histogram) was the most accurate tool to confirm high ratings.

*** Here’s how we use Phase to confirm a high Expert Rating. ***

When a rating of 95 up or 95 down is triggered on the market, we look for the Phase histogram to change direction. The change in direction must be to the direction of the rating. This change does not have to happen on the day of the rating, but it must occur within 2 to 3 days on either side of the rating day.
If the Phase does not change direction, the rating is considered not confirmed.

This short video analysis of the last 4 ratings shows this process in action.
Want to try out this for yourself? https://winwaycharts.com/wordpress/free-trial/

Using Group/Sectors in top down analysis

In this recent Zoom video Steve Hill, founder of WinWayCharts discusses the Group and Sector Reports, using them to identify groups that are moving up. He then uses Darren’s indicators to focus in on potential stock candidates within these groups.

AI Market Timing Signals – how to confirm

The WinWay TradingExpert Pro Market Timing signals are not a perfect system. If they were no doubt the founders would have kept it secret and traded the signals themselves.

The signals that give us early waring of a change in direction of the market are proprietary. The 400 rules that are used by the Artificial Intelligence inference engine to determine change of market direction use many of the widely known technical tools, read review here.

The rating calculation and the indicators contributing to the ratings have not been changed for many years. A decision was made some years ago to avoid constantly moving the goalposts as the constant optimizing or back fitting erodes the validity of the system.

High ratings to the upside or downside of notice have to be 95 or greater (the maximum is 100). the ratings are considered confirmed when the Phase indicator that is outside of the AI system, changes in the direction of the high rating.

So ratings have fired in the last few months how do we confirm them?

We look for the Phase indicator ( a derivative of MACD) to change in the direction of the signal. This needs to occur within a 3 day window before or after the rating.

The last 2 market timing signals illustrate this nicely.

August 18, 2022 97-2 up signal on the market

The up signal occurred during a a 3 day down period on the uptrend, however the Phase indicator did not change direction (it would need to turn up after going down) within the window for confirmation. This signal is therefore unconfirmed by Phase.

August 22, 2022 down signal on the market

The down signal occurred on 8-22-22. 100 down is the strongest signal the market timing generates. In this case the Phase turned down after a prolonged upward move, on the day before the signal. This is considered a confirmed down signal on the market.

The rules that contributed to 0-100 down on the market

The 100 down signal is the strongest signal the AI system generates. Here are the major technical events that contribute to this rating.

Trend Status has changed to a strong down trend. This indicates that a downward trend has started that may continue in this direction. This is a moderate bearish signal.

The 21 day stochastic has declined below the 80% line and the price phase indicator is decreasing. In this strongly downtrending market this is an indication that the downtrend will continue.

Volume accumulation percentage is decreasing and the 21 day stochastic has moved below the 80% line. In this strongly down market, this is taken as a very strong bearish signal that could be followed by a downward price movement.

The exponentially smoothed advance/decline line has turned negative when the up/down volume oscillator and the advance/decline oscillator are already negative. In this market, this is viewed as a bearish signal that could precede a downward price movement.

The up/down volume oscillator has turned negative when the exponentially smoothed advance/decline line and the advance/decline oscillator are already negative. In this market, this is viewed as a bearish signal that could precede a downward price movement.

The new high/new low indicator has reversed to the downside. This is a reliable bearish signal that is often followed by an downward price movement. In this market a continued strong downtrend can be expected.

Ready to Take Your Trading to the Next Level with your WinWayCharts?

September 7, 2022 – 3pm to 7pm London time, four hour in-depth webinar

covering these in-depth topics, crucial to your successful trading.

 Early bird pricing now in effect, see below to book your discounted price and save over 20%

****** Includes PDF handouts and access to the recordings of the event ******


Session 1  – Power tools and features in your WinWayCharts and how to use them

Color Studies, Overlays, Custom Indicators, Seasonality, and Matchmaker. These are important and powerful tools in your WinWayCharts. In this session, we’ll show how to set a Color Study and why, what Overlays are useful for, and more.  Learn how these tools will save you time and how they contribute to your trading decisions. Darren’s 3 favourite Bullish/Bearish strategies will be used as the basis for the color study.


Session 2 – Darren’s Indicators and how to apply them

Some indicators are more reliable than others. In this session, we’ll look at some of the nuances of MACD WinWay, RSI WinWay and the CCI indicators and how they add confidence to our trading decisions. We’ll explore these 3 indicators in-depth with examples of them in action in the stock market.


Session 3 – Exchange traded funds rotation strategy so you never have to go short

Using the reports in WinWayCharts we’ll look at a tried and tested ETF rotation strategy that is simple and yet effective at getting you in the right market segment at the right time. This strategy is simple to execute and has consistently beat the market over multiple years. While this strategy doesn’t replace your regular trading, it’s a good place to consider for a segment of trading.


Session 4 – Live Trading using Darren’s Favorite Candlestick Strategy and ETF Strategy

Starting from Market Timing, then moving to the Darren’s 3 Favourite Candlestick Strategy and the ETF Rotation Report, we’ll look for candidate stocks. Using the WinWayCharts indicators we’ll look to confirm the best of the best stock and ETF candidates to place trades with stops using a live trading account.


Your Presenters:  Ray Foreman UK director WinWayCharts and, Steve Hill, CEO AIQ Systems, and founder WinWayCharts

 

Master Trading with WinWayCharts Webinar 

September 7, 2022

Early bird pricing now in effect save over 20%

ONLY $299 229

includes all handouts in PDF and access to recordings

en_USEnglish
en_USEnglish