StockFetcher Forums · Filter Exchange · Bulkowski's Reversal<< >>Post Follow-up
xarlor
561 posts
msg #149201
Ignore xarlor
9/21/2019 11:31:56 AM

Been messing around with Bulkowski's Weekly Reversal pattern and adapting it to daily for swing trading.

Fetcher[
/* Bulkowski's Reversal */

optionable
average volume(30) > 1234567

/* Price action away from wma(150) to exclude false positives */
set{a1,count(price touched wma(150),10)}
a1 < 1
do not draw a1

/* Reversal signal */
set{var1,count(high 1 day ago > high 2 days ago,1)}
set{var2,count(close 1 day ago < low 2 days ago,1)}
set{var3,count(open 1 day ago > open 2 days ago,1)}
set{var4,var1 * var2}
set{signal,var3 * var4}

/* Long confirmation */
set{x1,count(close > high 1 day ago,1)}
set{x2,count(low > wma(150),1)}
set{x3,x1 * x2}
set{LONG,x3 * signal}

/* Short confirmation */
set{z1,count(close < low 1 day ago,1)}
set{z2,count(high < wma(150),1)}
set{z3,z1 * z2}
set{SHORT,z3 * signal}

set{trigger,LONG + SHORT}
trigger > 0

draw LONG
draw SHORT
do not draw trigger
]



StockFetcher Forums · Filter Exchange · Bulkowski's Reversal<< >>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.