StockFetcher Forums · Filter Exchange · Camarillo Tinkering<< >>Post Follow-up
DMOBRIEN
363 posts
msg #88489
Ignore DMOBRIEN
2/21/2010 3:40:59 PM

Needs some windex ...

Fetcher[set{H, high one day ago - low one day ago}
set{C, close one day ago}
set{m4,H * 1.1}
set{m4a, m4 / 4}
set{H4, m4a + C}
set{m3,H * 1.1}
set{m3a, m3 / 8}
set{H3, m3a + C}
set{m2,H * 1.1}
set{m2a, m2 / 12}
set{H2, m2a + C}
set{m1,H * 1.1}
set{m1a, m1 / 20}
set{H1, m3a + C}
set{n1, H * 1.1}
set{n1a, n1 / 20}
set{L1, C - n1a}
set{n2, H * 1.1}
set{n2a, n1 / 12}
set{L2, C - n2a}
set{n3, H * 1.1}
set{n3a, n1 / 8}
set{L3, C - n3a}
set{n4, H * 1.1}
set{n4a, n1 / 4}
set{L4, C - n4a}
price between 1 and 20

draw H4 on plot price
draw H3 on plot price
draw H2 on plot price
draw H1 on plot price
draw L1 on plot price
draw L2 on plot price
draw L3 on plot price
draw L4 on plot price

chart-time is 5 days
volume > 50000
close above H4 one day ago


draw macd
add column h4
add column H3
add column separator
add column L3
add column l4
add column separator
]



ham1198
174 posts
msg #88493
Ignore ham1198
2/21/2010 5:06:50 PM

....i played around with this filter some time ago. can't remember where i got it:


Camarilla Pivot Points:

set{C, close 1 day ago}
set{Range, day point range 1 day ago * 1.1}
set{R4, Range / 2}
set{R3, Range / 4}
set{R2, Range / 6}
set{R1, Range / 12}
set{S1, Range / 12}
set{S2, Range / 6}
set{S3, Range / 4}
set{S4, Range / 2}

/*Camarilla Resistance*/
set{CR4, C + R4}
set{CR3, C + R3}
set{CR2, C + R2}
set{CR1, C + R1}

/*Camarilla Support*/
set{CS1, C - S1}
set{CS2, C - S2}
set{CS3, C - S3}
set{CS4, C - S4}



draw price line at C
draw price line at CR4
draw price line at CR3
draw price line at CR2
draw price line at CR1
draw price line at PP
draw price line at CS1
draw price line at CS2
draw price line at CS3
draw price line at CS4

price above 15
avgvol(17) above 300000
price above ema(17)
chart-time 65 days

60 day slope of the close above 0
close near bottom linear regression(60)

Draw bollinger band(20)
Draw Linear Regression Channel(60)
add column RSI(2)
add column Fast Stochastics(14,10)
add column Williams %R(10)
add column ma(20) {SMA20}


ham1198
174 posts
msg #88495
Ignore ham1198
2/21/2010 5:12:53 PM

Fletcher[Camarilla Pivot Points:

set{C, close 1 day ago}
set{Range, day point range 1 day ago * 1.1}
set{R4, Range / 2}
set{R3, Range / 4}
set{R2, Range / 6}
set{R1, Range / 12}
set{S1, Range / 12}
set{S2, Range / 6}
set{S3, Range / 4}
set{S4, Range / 2}

/*Camarilla Resistance*/
set{CR4, C + R4}
set{CR3, C + R3}
set{CR2, C + R2}
set{CR1, C + R1}

/*Camarilla Support*/
set{CS1, C - S1}
set{CS2, C - S2}
set{CS3, C - S3}
set{CS4, C - S4}



draw price line at C
draw price line at CR4
draw price line at CR3
draw price line at CR2
draw price line at CR1
draw price line at PP
draw price line at CS1
draw price line at CS2
draw price line at CS3
draw price line at CS4

price above 15
avgvol(17) above 300000
price above ema(17)
chart-time 65 days

60 day slope of the close above 0
close near bottom linear regression(60)

Draw bollinger band(20)
Draw Linear Regression Channel(60)
add column RSI(2)
add column Fast Stochastics(14,10)
add column Williams %R(10)
add column ma(20) {SMA20}
]

DMOBRIEN
363 posts
msg #88498
Ignore DMOBRIEN
2/21/2010 7:18:45 PM

How about Tirone Levels? Still tinkering with this one ... but err.. my coding skills are lacking

Fetcher[set{my_high,high 3 day high}
set{my_low,low 3 day low}
set{my_diff, my_high - my_low}
set{my_mid, my_diff / 2}
set{my_mid1, my_high - my_mid}
set{my_top, my_diff *.33}
set{my_S, my_top + my_low}
set{my_R, my_bottom + my_low}
set{my_bottom, my_diff *.67}
draw my_high on plot price
draw my_low on plot price
draw my_mid1 on plot price
add column my_diff
add column my_top
add column my_bottom
draw my_R on plot price
draw my_S on plot price

chart-time is 3 days
price > 1.0
draw bollinger bands(8,2)
]



Another bottle of windex needed

DMOBRIEN
363 posts
msg #88499
Ignore DMOBRIEN
2/21/2010 8:04:02 PM

Ham, maybe something like this for 2 week period ...

Fetcher[
set{money, close * vma(7)}
set{my_high,high 10 day high}
set{my_low,low 10 day low}
set{my_diff, my_high - my_low}
set{my_mid, my_diff / 2}
set{my_mid1, my_high - my_mid}
set{my_top, my_diff *.33}
set{my_S, my_top + my_low}
set{my_R, my_bottom + my_low}
set{my_bottom, my_diff *.67}
draw price line at my_high
draw price line at my_low
draw price line at my_mid1
add column my_diff
add column my_top
add column my_bottom
draw price line at my_R
draw price line at my_S

chart-time is 10 days
price > 1.0
draw bollinger bands(4,1)
add column bollinger width(4)
average volume(20) > 500000
price crossed above upper bollinger band(4,1)

draw money
date offset is 5
]



DMOBRIEN
363 posts
msg #88500
Ignore DMOBRIEN
2/21/2010 8:09:40 PM

http://www.stockfetcher.com/cgi-bin/popquote.pl?sym=CDII&id=1127352&period=default&did=8805

How can i get this chart to come up?

chetron
2,817 posts
msg #88507
Ignore chetron
modified
2/21/2010 10:27:48 PM

click me....


and me....




StockFetcher Forums · Filter Exchange · Camarillo Tinkering<< >>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.