cabogordon 88 posts msg #76114 - Ignore cabogordon |
7/7/2009 9:37:24 PM
is their away to create a filter so we could see what sector money is moving in and out off. sector roataton kinda thing. looks like alot of money is moving into healthcare and out of energy ,,,,,,
|
mystiq 650 posts msg #76165 - Ignore mystiq modified |
7/9/2009 7:14:27 AM
**to track MONEY FLOW**
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}
? is it possible to put results from various different filters into ONE specific filter ? example; put the results of TEN filters into ONE filter...? (-.-) ...if so , HOW? Thx
|