- Katılım
- 23 Eki 2020
- Mesajlar
- 1,826
Ever since reading Linda Raschke's chapter on the Wolfe Waves, in her book Street Smarts, I have been intrigued by this methodology. I notice that Bill Wolfe sells his teaching course on his concept for $3K, a somewhat pricey amount. I was wondering if anyone here has taken the course and traded this method, or can comment on it otherwise. Thanks in advance for your comments. JohnO ______________________ The above URL was the basis of an indicator that I designed to detect and display WolfeWaves. This was first posted to this list quite a while ago so many of you may have the application. The .ela and the source code (text) are attached. An .gif shows one application of this indicator. I hope that you will apply this indicator to many symbols of many time intervals and judge for yourself it's suitability. Please check the URL for further discussion. I have not as yet attempted to construct a strategy out of the indicator but it would be easy since most of the line drawing is done with trendlines. Clyde ______________________ Hi Clyde, Just for your info: That LastBaronchart function in that .ela ruined lots of my studies since it overwrote the original TS function. I had to import the original to correct my problem since I care less about the original function being incorrect than having problems with my studies at this time. Regarding Wolfe, I played with it for some time when it was mention here by Mike Suesserrot (?) (sorry about that, Mike) and concluded that it works sometimes and enough often it doesn't to forget it, but I haven't considered looking at higher time frames to see if it is OK there, so I'll take another look. Jan Philipp ______________________ Here's a Metastock code: |
|
Wolfe Wave Patern Pa:=Trough(4,LOW,5); Pb:=Peak(3,HIGH,5); P1:=Trough(3,LOW,5); P2:=Peak(2,HIGH,5); P3:=Trough(2,LOW,5); P4:=Peak(1,HIGH,5); P5:=Trough(1,LOW,5); tb:=TroughBars(1,LOW,5); eki1:=If(tb<=4 AND p1 > pa AND pb < p2 AND p1 < p4 AND p1 > p3 AND p3 > p5 AND p4 < p2,1,0); p1:=Trough(3,LOW,5); p3:=Trough(2,LOW,5); p5:=Trough(1,LOW,5); o1:=p1-p3; o2:=p1-p5; a1:=TroughBars(3,LOW,5)-TroughBars(2,LOW,5); a2:=TroughBars(3,LOW,5)-TroughBars(1,LOW,5); tan1:=o1/a1; tan2:=o2/a2; eki2:=Abs(tan1-tan2); If(eki1 AND eki2 <= .2 ,2,0); |
Lenny PS - I never used it : >) | |
| |
Source / From: |