StockFetcher Forums · Filter Exchange · RSI(2) Tide Analyzer<< >>Post Follow-up
TheRumpledOne
6,407 posts
msg #37278
Ignore TheRumpledOne
8/3/2005 9:10:44 AM

Simple version:

Fetcher[
/* RSI(2) Tide Analyzer */

set{r2b,days(rsi(2) is above rsi(2) 1 day ago,100)}
set{r2a,days(rsi(2) is below rsi(2) 1 day ago,100)}
set{r2xr2, r2a - r2b}

set{LoTest, rsi(2) 10 day high - rsi(2)}
set{HiTest, rsi(2) - rsi(2) 10 day low }

add column LoTest
add column HiTest
add column r2xr2
/* your filter code goes below this line */

close above 20
volume above 1000000

sort column 5 descending

/* your filter code goes above this line */
]



BELLS AND WHISTLES VERSION:

Fetcher[
/* RSI(2) Tide Analyzer */

set{E36b,days(ema(3) is above ema(6),100)}
set{E36a,days(ema(3) is below ema(6),100)}
set{E3xE6, E36a - E36b}

set{E50200b,days(ma(50) is above ma(200),100)}
set{E50200a,days(ma(50) is below ma(200),100)}
set{M50xM200, E50200a - E50200b}

set{E1326b,days(ema(13) is above ema(26),100)}
set{E1326a,days(ema(13) is below ema(26),100)}
set{E13xE26, E1326a - E1326b}

set{CCb,days(close is above close 1 day ago,100)}
set{CCa,days(close is below close 1 day ago,100)}
set{CxC, CCa - CCb}

set{E5b,days(close is above ema(5),100)}
set{E5a,days(close is below ema(5),100)}
set{CxE5, E5a - E5b}


set{E50b,days(close is above ma(50),100)}
set{E50a,days(close is below ma(50),100)}
set{CxM50, E50a - E50b}

set{E200b,days(close is above ma(200),100)}
set{E200a,days(close is below ma(200),100)}
set{CxM200, E200a - E200b}


set{T10, count(10 day slope of the close above 0,1)}
set{T60, count(60 day slope of the close above 0,1)}
set{T200, count(200 day slope of the close above 0,1)}

Set{a1, T200 * 1}
Set{a2, T60 * 10}
Set{a3, T10 * 100}

Set{aa, a1 + a2}
Set{TREND, aa + a3}

set{v, volume 1 day ago}
set{volinc, volume - v}
set{volpc, volinc / v}
set{volpct, volpc * 100}

set{VolZ, days(volume < 1,100)}
set{VolUp, days(volume is below volume 1 day ago,100)}
set{VolDn, days(volume is above volume 1 day ago,100)}
set{VolCnt, VolUp - VolDn}

set{vck1, volume 1 day ago }
set{vck, volume / vck1 }
set{vdbl, days(vck < 2, 100)}


set{PARBuy, count(close crossed above Parabolic SAR, 5) }
set{DMIBuy, count( di(14) Difference crossed above 0 , 5) }
set{DMIBuyX, count( di(14) Difference above 0 , 1) }

set{PARSell, count(close crossed below Parabolic SAR, 5) }
set{DMISell, count( di(14) Difference crossed below 0, 5) }
set{DMISellX, count( di(14) Difference below 0, 1) }

set{PARSBuy1, PARBuy * DMIBuy}
set{PARSBuy, PARSBuy1 * DMIBuyX}

set{PARSSell1, PARSell * DMISell}
set{PARSSell, PARSSell1 * DMISellX}

set{PARSTrade, PARSBuy + PARSSell}

set{HiOp, high - open}

set{WRb,days(Williams %R(10) is above Williams %R(10) 1 day ago,100)}
set{WRa,days(Williams %R(10) is below Williams %R(10) 1 day ago,100)}
set{WRxWR, WRa - WRb}

set{r2b,days(rsi(2) is above rsi(2) 1 day ago,100)}
set{r2a,days(rsi(2) is below rsi(2) 1 day ago,100)}
set{r2xr2, r2a - r2b}

set{LoTest, rsi(2) 10 day high - rsi(2)}
set{HiTest, rsi(2) - rsi(2) 10 day low }

add column LoTest
add column HiTest
add column r2xr2

and add column VolCnt
and add column Vdbl
and add column volpct

and add column HiOp
and add column Trend

and add column CxC {CxC_}
and add column CxE5 {CxE5}

and add column E3xE6 {E3xE6}
and add column E13xE26 {E13xE26}


and add column CxM50
and add column CxM200
and add column M50xM200

add column rsi(2)
add column weekly rsi(2)

add column PARSBuy
add column PARSSell

add column WRxWR

and draw RSI(2)
and draw ema(5)

and draw Williams %R(10)

and draw Parabolic SAR
and draw +di(14)

and draw -di(14)
and draw adx(14)
and draw di(14) difference

/* your filter code goes below this line */

close above 20
volume above 1000000

sort column 5 descending

/* your filter code goes above this line */
]



The RSI(2) Tide Analyzer tells you where the current rsi(2) value is compared to the rsi(2) high and low over the last 10 days (2 weeks). It also tells you how many days rsi(2) has been increasing (+) or decreasing (-).

It should be obvious to the reader (remember when you were in school and the author did that? LOL!) that you can use this on just about any indicator to see just how extreme the value is at the moment.

Also, analyzing 2 or more of your favorite indicators in this fashion should prove profitable when they all are at extremes in the same direction.

MAY ALL YOUR FILLS BE COMPLETE


TheRumpledOne
6,407 posts
msg #37279
Ignore TheRumpledOne
8/3/2005 9:21:13 AM

Fetcher[
/* Multi Tide Analyzer */

set{r2b,days(rsi(2) is above rsi(2) 1 day ago,100)}
set{r2a,days(rsi(2) is below rsi(2) 1 day ago,100)}
set{r2xr2, r2a - r2b}

set{LoRSI, rsi(2) 10 day high - rsi(2)}
set{HiRSI, rsi(2) - rsi(2) 10 day low }

set{m12b,days(momentum(12) is above momentum(12) 1 day ago,100)}
set{m12a,days(momentum(12) is below momentum(12) 1 day ago,100)}
set{m12xm12, m12a - m12b}

set{Lomom, momentum(12) 10 day high - momentum(12)}
set{Himom, momentum(12) - momentum(12) 10 day low }
set{wr10b,days(williams %R(10) is above williams %R(10) 1 day ago,100)}
set{wr10a,days(williams %R(10) is below williams %R(10) 1 day ago,100)}
set{wr10xwr10, wr10a - wr10b}

set{Lowr, williams %R(10) 10 day high - williams %R(10)}
set{Hiwr, williams %R(10) - williams %R(10) 10 day low }



add column Lowr
add column LoRSI
add column Lomom

add column Hiwr
add column HiRSI
add column Himom

add column wr10xwr10
add column r2xr2
add column m12xm12

/* your filter code goes below this line */

close above 20
volume above 1000000

sort column 5 descending

/* your filter code goes above this line */
]



An example of testing 3 indicators for high/low extremes.

MAY ALL YOUR FILLS BE COMPLETE.


TheRumpledOne
6,407 posts
msg #37581
Ignore TheRumpledOne
8/21/2005 4:48:53 PM

SF, when I click on the above post, the correct filter is not running.. Please check.

Fetcher[
/* Multi Tide Analyzer */

set{r2b,days(rsi(2) is above rsi(2) 1 day ago,100)}
set{r2a,days(rsi(2) is below rsi(2) 1 day ago,100)}
set{r2xr2, r2a - r2b}

set{LoRSI, rsi(2) 10 day high - rsi(2)}
set{HiRSI, rsi(2) - rsi(2) 10 day low }

set{m12b,days(momentum(12) is above momentum(12) 1 day ago,100)}
set{m12a,days(momentum(12) is below momentum(12) 1 day ago,100)}
set{m12xm12, m12a - m12b}

set{Lomom, momentum(12) 10 day high - momentum(12)}
set{Himom, momentum(12) - momentum(12) 10 day low }
set{wr10b,days(williams %R(10) is above williams %R(10) 1 day ago,100)}
set{wr10a,days(williams %R(10) is below williams %R(10) 1 day ago,100)}
set{wr10xwr10, wr10a - wr10b}

set{Lowr, williams %R(10) 10 day high - williams %R(10)}
set{Hiwr, williams %R(10) - williams %R(10) 10 day low }



add column Lowr
add column LoRSI
add column Lomom

add column Hiwr
add column HiRSI
add column Himom

add column wr10xwr10
add column r2xr2
add column m12xm12

/* your filter code goes below this line */

close above 20
volume above 1000000

sort column 5 descending

/* your filter code goes above this line */




]




StockFetcher Forums · Filter Exchange · RSI(2) Tide Analyzer<< >>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.