StockFetcher Forums · Public Filter List · Money Flow RSI: Not Ure Average Six-Pack Joe RSI<< >>Post Follow-up
nikoschopen
2,824 posts
msg #40720
Ignore nikoschopen
1/26/2006 5:22:33 PM

Developed by Quong and Soudack, this indicator basically measures the amount of money flowing in or out of a particular stock. It is formulated by multiplying the average price by the volume for the day. A money flow ratio is then computed from the ratio of positive money flow, averaged over a specified number of days (here 10 days were used), to negative money flow, averaged over the same period. This ratio is then normalized by means of the RSI formula which translates the data to a scale ranging between zero and 100. Money flow values above 80 indicates a top, where profits will be taken and imminent selloff is possible. Values below 20 indicate a bottom, which is often followed by an uptrend.

Fetcher[
set{pivot10,sum(pp,10) / 10}
set{MF, pivot10 * avgvol(10)}
set{up,count(volume above volume 1 day ago,10)}
set{down,count(volume below volume 1 day ago,10)}
set{PMF, MF * up}
set{NMF, MF * down}
set{ratio, PMF / NMF}
set{MFI, 1 + ratio}
set{MFSI, 100 / MFI}
set{MFRSI, 100 - MFSI}

draw MFRSI

add column pivot10
add column MF
add column up
add column down
add column PMF
add column NMF
add column ratio
add column MFRSI
]





nikoschopen
2,824 posts
msg #40733
Ignore nikoschopen
modified
1/27/2006 2:18:54 PM

Being a Joe Sixpack myself, so much for releasing a filter without extensive testing. Here's a bug-free filter (hopefully, this will end the need for further extermination). RSI(2) has been added for good measure.

Fetcher[
set{up,count(close above close 1 day ago,1)}
set{down,count(close below close 1 day ago,1)}

set{pivot,pp}
set{MF, pivot * volume}

set{UPMF, MF * up}
set{PMF, sum(UPMF,10)}
set{DNMF, MF * down}
set{NMF, sum(DNMF,10)}
set{ratio, PMF / NMF}
set{MFI, 1 + ratio}
set{MFSI, 100 / MFI}
set{MFRSI, 100 - MFSI}

price above 10
and volume above 300000

draw MFRSI
draw RSI(2)

add column pivot
add column MF
add column PMF
add column NMF
add column ratio
add column MFRSI
]





dlslusser
1 posts
msg #40812
Ignore dlslusser
1/31/2006 12:30:32 PM

This still is not very selective!


nikoschopen
2,824 posts
msg #40815
Ignore nikoschopen
1/31/2006 2:48:59 PM

Can you elaborate on what's not so selective about this filter?


Niagara
49 posts
msg #50785
Ignore Niagara
4/1/2007 11:33:50 PM

I think he might have been referring to 1867 matches as not narrowing the field enough.

nikoschopen
2,824 posts
msg #50787
Ignore nikoschopen
4/2/2007 12:38:42 AM

Hi,

Without any further parameter, MFRSI is meant to be used as just another indicator. If you want to use it as a filter, however, just add a few more criteria or, better yet, simply add it on top of your existing filters. For example, the following filter would vomit only 240 as opposed to 1879 stocks.

Fetcher[
draw ma(10)
draw ema(30)
draw weekly ma(10)

sign(opcl) equals 1
Close above Day Position(0.50,1)
set{body,opcl / day point range}
body above 0.5

set{up,count(close above close 1 day ago,1)}
set{down,count(close below close 1 day ago,1)}

set{pivot,pp}
set{MF, pivot * volume}

set{UPMF, MF * up}
set{PMF, sum(UPMF,10)}
set{DNMF, MF * down}
set{NMF, sum(DNMF,10)}
set{ratio, PMF / NMF}
set{MFI, 1 + ratio}
set{MFSI, 100 / MFI}
set{MFRSI, 100 - MFSI}

price above 20
avgvol(17) above 300000

draw MFRSI
draw RSI(2)

add column pivot
add column MF
add column PMF
add column NMF
add column ratio
add column MFRSI
]



StockFetcher Forums · Public Filter List · Money Flow RSI: Not Ure Average Six-Pack Joe RSI<< >>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.