StockFetcher Forums · Filter Exchange · Accumulation Distribution w/ Money Flow RSI<< >>Post Follow-up
DMOBRIEN
363 posts
msg #97615
Ignore DMOBRIEN
11/25/2010 11:34:24 PM

Happy Thanksgiving


Fetcher[/* Establish Accumulation and Distribution */

set{AD1, close - low}
set{AD2, High - close}
set{AD3, High - low}
set{EQ1, AD1 - AD2}
set{EQ2, EQ1 / AD3}
set{ACDST, sum(EQ2(10),10) / 10}
set{ACUMDISTAV, cema(ACDST, 4)}
draw ACDST
draw ACUMDISTAV on plot ACDST
set{zero, 0}
draw zero on plot ACDST

/* MoneyFlow Strength Trig */

set{X, high 1 week high}
set{Y, low 1 week low}
set{Z, close}
set{a, X + Y}
set{J, a + z}
set{pp, j / 3}
set{ppma, cma(pp, 22)}

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

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

set{slope8, 2 day slope of mfrsi}
set{radians8, slope8}
set{atan8, atan(radians8)}
set{hcircle, 180 / 3.14159}
set{angledeg8, atan8 * hcircle}
set{angup,days(angledeg8 is above 0 1 day ago ,8)}
draw angup

/* Selection Criteria */

average volume(34) > 100000
eps > 0
roe > 5
]






DMOBRIEN
363 posts
msg #97617
Ignore DMOBRIEN
11/25/2010 11:54:41 PM

With 4 and 12 Week Support/Resistance

Fetcher[/* Establish Accumulation and Distribution */

set{AD1, close - low}
set{AD2, High - close}
set{AD3, High - low}
set{EQ1, AD1 - AD2}
set{EQ2, EQ1 / AD3}
set{ACDST, sum(EQ2(10),10) / 10}
set{ACUMDISTAV, cema(ACDST, 4)}
draw ACDST
draw ACUMDISTAV on plot ACDST
set{zero, 0}
draw zero on plot ACDST

/* MoneyFlow Strength Trig */

set{X, high 1 week high}
set{Y, low 1 week low}
set{Z, close}
set{a, X + Y}
set{J, a + z}
set{pp, j / 3}
set{ppma, cma(pp, 22)}

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

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

set{slope8, 2 day slope of mfrsi}
set{radians8, slope8}
set{atan8, atan(radians8)}
set{hcircle, 180 / 3.14159}
set{angledeg8, atan8 * hcircle}
set{angup,days(angledeg8 is above 0 1 day ago ,8)}
draw angup

/* Selection Criteria */

chart-time is 200 day
average volume(34) > 100000
eps > 0
roe > 5

/* 4 and 12 Week Support and Resistance */

set{H, high 4 weeks ago - low 4 weeks ago}
set{C, close 4 week ago}
set{m4,H * 1.1}
set{m4a, m4 / 2}
set{H4, m4a + C}
set{m3,H * 1.1}
set{m3a, m3 / 4}
set{H3, m3a + C}
set{m2,H * 1.1}
set{m2a, m2 / 6}
set{H2, m2a + C}
set{m1,H * 1.1}
set{m1a, m1 / 12}
set{H1, m3a + C}
set{n1, H * 1.1}
set{n1a, n1 / 12}
set{L1, C - n1a}
set{n2, H * 1.1}
set{n2a, n1 / 6}
set{L2, C - n2a}
set{n3, H * 1.1}
set{n3a, n1 / 4}
set{L3, C - n3a}
set{n4, H * 1.1}
set{n4a, n1 / 2}
set{L4, C - n4a}

draw price line at H4
draw price line at H3
draw price line at H2
draw price line at H1
draw price line at L1
draw price line at L2
draw price line at L3
draw price line at L4

set{H10, high 12 weeks ago - low 12 weeks ago}
set{C10, close 12 week ago}
set{m41,H10 * 1.1}
set{m4a1, m41 / 2}
set{H41, m4a1 + C10}
set{m31,H10 * 1.1}
set{m3a1, m31 / 4}
set{H31, m3a1 + C10}
set{m21,H10 * 1.1}
set{m2a1, m21 / 6}
set{H21, m2a1 + C10}
set{m11,H10 * 1.1}
set{m1a1, m11 / 12}
set{H11, m3a1 + C10}
set{n11, H10 * 1.1}
set{n1a1, n11 / 12}
set{L11, C10 - n1a1}
set{n21, H10 * 1.1}
set{n2a1, n11 / 6}
set{L21, C10 - n2a1}
set{n31, H10 * 1.1}
set{n3a1, n11 / 4}
set{L31, C10 - n3a1}
set{n41, H10 * 1.1}
set{n4a1, n11 / 2}
set{L41, C10 - n4a1}


draw price line at H41
draw price line at H31
draw price line at H21
draw price line at H11
draw price line at L11
draw price line at L21
draw price line at L31
draw price line at L41
]



DMOBRIEN
363 posts
msg #97618
Ignore DMOBRIEN
11/26/2010 12:06:34 AM

12 and 24 Week Support and Resistance with VIX

Fetcher[/* Establish Accumulation and Distribution */

set{AD1, close - low}
set{AD2, High - close}
set{AD3, High - low}
set{EQ1, AD1 - AD2}
set{EQ2, EQ1 / AD3}
set{ACDST, sum(EQ2(10),10) / 10}
set{ACUMDISTAV, cema(ACDST, 4)}
draw ACDST
draw ACUMDISTAV on plot ACDST
set{zero, 0}
draw zero on plot ACDST

/* MoneyFlow Strength Trig */

set{X, high 1 week high}
set{Y, low 1 week low}
set{Z, close}
set{a, X + Y}
set{J, a + z}
set{pp, j / 3}
set{ppma, cma(pp, 22)}

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

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

set{slope8, 2 day slope of mfrsi}
set{radians8, slope8}
set{atan8, atan(radians8)}
set{hcircle, 180 / 3.14159}
set{angledeg8, atan8 * hcircle}
set{angup,days(angledeg8 is above 0 1 day ago ,8)}
draw angup

/* Selection Criteria */

chart-time is 200 day
average volume(34) > 100000
eps > 0
roe > 5

/* 12 and 24 Week Support and Resistance */

set{H, high 12 weeks ago - low 12 weeks ago}
set{C, close 12 week ago}
set{m4,H * 1.1}
set{m4a, m4 / 2}
set{H4, m4a + C}
set{m3,H * 1.1}
set{m3a, m3 / 4}
set{H3, m3a + C}
set{m2,H * 1.1}
set{m2a, m2 / 6}
set{H2, m2a + C}
set{m1,H * 1.1}
set{m1a, m1 / 12}
set{H1, m3a + C}
set{n1, H * 1.1}
set{n1a, n1 / 12}
set{L1, C - n1a}
set{n2, H * 1.1}
set{n2a, n1 / 6}
set{L2, C - n2a}
set{n3, H * 1.1}
set{n3a, n1 / 4}
set{L3, C - n3a}
set{n4, H * 1.1}
set{n4a, n1 / 2}
set{L4, C - n4a}

draw price line at H4
draw price line at H3
draw price line at H2
draw price line at H1
draw price line at L1
draw price line at L2
draw price line at L3
draw price line at L4

set{H10, high 24 weeks ago - low 24 weeks ago}
set{C10, close 24 week ago}
set{m41,H10 * 1.1}
set{m4a1, m41 / 2}
set{H41, m4a1 + C10}
set{m31,H10 * 1.1}
set{m3a1, m31 / 4}
set{H31, m3a1 + C10}
set{m21,H10 * 1.1}
set{m2a1, m21 / 6}
set{H21, m2a1 + C10}
set{m11,H10 * 1.1}
set{m1a1, m11 / 12}
set{H11, m3a1 + C10}
set{n11, H10 * 1.1}
set{n1a1, n11 / 12}
set{L11, C10 - n1a1}
set{n21, H10 * 1.1}
set{n2a1, n11 / 6}
set{L21, C10 - n2a1}
set{n31, H10 * 1.1}
set{n3a1, n11 / 4}
set{L31, C10 - n3a1}
set{n41, H10 * 1.1}
set{n4a1, n11 / 2}
set{L41, C10 - n4a1}


draw price line at H41
draw price line at H31
draw price line at H21
draw price line at H11
draw price line at L11
draw price line at L21
draw price line at L31
draw price line at L41


/* VIX Reference */

set{Vvix, ind(^qqqq, high)}
Set{vMA20,CMA(Vvix,20)}
set{vSD,cstddev(Vvix,20)}
set{vSD12,2 * vSD}
set{vBOLU,vMA20 + vSD12}
set{vBOLD,vMA20 - vSD12}
draw VVIX
draw vbold on plot VVIX
draw vbolu on plot VVIX
draw vma20 on plot VVIX
]



StockFetcher Forums · Filter Exchange · Accumulation Distribution w/ Money Flow 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.