StockFetcher Forums · General Discussion · Simple 4 week system Filter help needed?<< >>Post Follow-up
lvainik
52 posts
msg #46872
Ignore lvainik
9/12/2006 10:35:07 AM

The 4 Week Rule: Simple and Good
The 4 week rule, developed by Richard Donchian, is one of the most successful systems tested by time. The 4 week rule is used primarily for futures trading but might also work in your stock trading system. This system is simplicity at its best:

1. Cover short positions and buy long whenever the price exceeds highs of the four preceding full calendar weeks.

2. Liquidate long positions and sell short whenever the price falls below the lows of the four preceding full calendar weeks.

This system would be continuous for our trader in that he would always have either a long or short position open. Therein lies the weakness of this continuous system. Staying in the market, our trader will get "whipsawed" during markets that are trendless or in a sideways trend. Trend-following systems, such as this, do not work as well under those two conditions.

The 4 week rule can be modified to make it non-continuous by using a shorter time span - such as a one or two week rule - for liquidation purposes and possibly for day trading. With this system, a four week "breakout" would be needed to initiate a new position, but a one or two week signal in the opposite direction would warrant liquidation of the position. Our trader remains out of the market until the next new four week breakout is registered.

This system is based on sound technical principles with signals that are mechanical and clearcut. It is trend-following so our trader is virtually guaranteed to be on the right side of every trend. It also follows the often quoted maxim - "let profits run, while cutting losses short". Another feature is fewer trades, which means less commission, not to mention, this system can be done with or without the aid of a computer.

Being a trend-following system, it is not going to catch market tops and bottoms. Keep in mind, however, the 4 week rule works as well as any other trend-following system but with the benefit of incredible simplicity.


TheRumpledOne
6,407 posts
msg #46875
Ignore TheRumpledOne
modified
9/12/2006 11:37:12 AM

1. Cover short positions and buy long whenever the price exceeds highs of the four preceding full calendar weeks.

2. Liquidate long positions and sell short whenever the price falls below the lows of the four preceding full calendar weeks.


Fetcher[

set{Hi4W, high 4 week high 1 week ago}
set{Lo4W, low 4 week low 1 week ago}

set{goshort, count( close below Lo4W, 1) }
set{golong, count( close above Hi4W, 1) }
set{trade, goshort + golong}

set{LongDays, count( golong above 0 , 5 ) }
set{ShortDays, count( goshort above 0 , 5 ) }

add column golong
add column LongDays

add column goshort
add column ShortDays

add column Hi4W
add column Lo4W

trade above 0

close above 1
volume above 1000000
average volume(30) above 1000000

sort column 5 descending
]



I think I read it correctly.

I added the longdays/shortdays columns so you would know how many times over the past 5 days, you had a long/short trigger.

HTH.








lvainik
52 posts
msg #46880
Ignore lvainik
9/12/2006 12:35:41 PM

thanks!


StockFetcher Forums · General Discussion · Simple 4 week system Filter help needed?<< >>Post Follow-up

*** Disclaimer *** StockFetcher.com does not endorse or suggest any of the securities which are returned in any of the searches or filters. They are provided purely for informational and research purposes. StockFetcher.com does not recommend particular securities. StockFetcher.com, Vestyl Software, L.L.C. and involved content providers shall not be liable for any errors or delays in the content, or for any actions taken based on the content.


Copyright 2022 - Vestyl Software L.L.C.Terms of Service | License | Questions or comments? Contact Us
EOD Data sources: DDFPlus & CSI Data Quotes delayed during active market hours. Delay times are at least 15 mins for NASDAQ, 20 mins for NYSE and Amex. Delayed intraday data provided by DDFPlus


This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.