StockFetcher Forums · Filter Exchange · magic box<< 1 2 3 4 >>Post Follow-up
TheRumpledOne
6,407 posts
msg #37550
Ignore TheRumpledOne
8/19/2005 5:02:13 PM


Aborted Attempt #2... here's why:

Fetcher[
set{A100, count(Aroon Oscillator(8) above 50, 100)}

a100 above 0

add column a100
add column Aroon Oscillator(8)

sort column 5 descending
]



After failing at writing the filter a few times, I decided something must be wrong.

I know I can code an SF filter so I looked at the data.

I decided to look at ALL OF THE STOCKS to see if any had an Aroon Oscillator(8) anywhere near 100 over the past 100 days.

Guess what? The is answer is NO!

So there is no MAGIC BOX to be found unless something changes in the formula.








TheRumpledOne
6,407 posts
msg #37551
Ignore TheRumpledOne
8/19/2005 5:28:11 PM

"Thou shalt READ what is written"

I was not familiar with the Aroon indicator... I use the oscillator when the text said AROON DOWN!

Another Attempt:

Fetcher[

set{xBB1, count(HIGH crossed above the upper bollinger band (20),1) - count(LOW crossed below the lower bollinger band (20),1)}

set{xBB2, count(close above the upper bollinger band (20),1) - count(close below the lower bollinger band (20),1)}

set{xBB, xBB1 + xBB2}


/* day 1 */

close 1 day ago below open 1 day ago
xbb 1 day ago below 0
Aroon down(8) 1 day ago equal 100

/* day 2 */

close above open
Aroon down(8) below 88

add column Aroon down(8)
add column Aroon down(8) 1 day ago
add column Aroon down(8) 2 days ago

sort column 5 descending
]



The is the first part.... finding the candidates... now you add them to a watch list and wait for the Williams %R to go up.

MAY ALL YOUR FILLS BE COMPLETE.


TheRumpledOne
6,407 posts
msg #37552
Ignore TheRumpledOne
8/19/2005 5:35:11 PM

Fetcher[
/* MAGIC BOX FILTER */

set{xBB1, count(HIGH crossed above the upper bollinger band (20),1) - count(LOW crossed below the lower bollinger band (20),1)}

set{xBB2, count(close above the upper bollinger band (20),1) - count(close below the lower bollinger band (20),1)}

set{xBB, xBB1 + xBB2}


/* day 1 */

close 2 days ago below open 2 days ago
xbb 2 days ago below 0
Aroon down(8) 2 days ago equal 100

/* day 2 */

close 1 day ago above open 1 day ago
Aroon down(8) 1 day ago below 88

/* day 3 */

Aroon down(8) below 76
Williams %R(14) crosses above -50

add column Aroon down(8)
add column Aroon down(8) 1 day ago
add column Aroon down(8) 2 days ago
add column Williams %R(14)

sort column 5 descending
]



Looks pretty close to me.

MAY ALL YOUR FILLS BE COMPLETE


TheRumpledOne
6,407 posts
msg #37560
Ignore TheRumpledOne
8/20/2005 12:17:07 AM

JUST TO MAKE THINGS CLEAR...

I DIDN'T THINK OF THE MAGIC BOX.

SOMEONE ASKED ME TO WRITE THE FILTER...

SO THAT'S WHAT I DID.

THE IDEA IS NOT MINE.




txtrapper
548 posts
msg #37561
Ignore txtrapper
8/20/2005 8:44:52 AM

TheRumpledOne 8/19/2005 4:17:18 PM

THE MAGIC BOX

The reason that I named this setup the Magic Box was so that you could relate to it and remember it faster.

----------------------------

Avery how would a "normal person" decipher the above statement?


TxTrapper
__________________________________________________________________________


TheRumpledOne
6,407 posts
msg #37562
Ignore TheRumpledOne
8/20/2005 10:09:20 AM

that was from the links that go4it posted:

http://home.cinci.rr.com/kgoodrich/Magic%20Box.doc

http://home.cinci.rr.com/kgoodrich/The%20Fairy%20Square.doc

All I did was click on the links and post the info.

Then I posted:

"Simple rule:

When you want someone to do something, make it as easy as possible for them to do it.

Give them ALL the information that you have and that they will need.

Do NOT make them have to go get it when you have it. Just give it to them."

Because, GO4IT, posted the links rather than post the info along with the links.

In other words, I had to do an extra step to get the info.

It may not seem like a big deal but when you get request and a regular recurring basis, you want to save as much time as possible.

Besides, Trapper, you know how I write, it should have been obvious that wasn't me.








go4it
8 posts
msg #37575
Ignore go4it
8/21/2005 2:25:54 AM

sry avery
didn't think to post the articles in its entiety
thx for working on this for me

i guess stockfetcher doesn't draw lines,boxes,etc like stockcharts.com does

my fills will almost be complete with ur help



chetron
2,817 posts
msg #77542
Ignore chetron
modified
8/13/2009 9:39:31 PM

how about...


Fetcher[
/* magic box for the basic folk */

set{var6a,close 1 day ago}

set{var1,count(close approaching Lower Bollinger Band(20,2) from above,1)}
set{var2,count(aroon down(8) above 99,1)}
set{var6,count(close below var6a,1)}
set{var8,var6 * var2}
set{var9a,var1 * var8}
set{var9,var9a 2 day ago}
set{var4,count(aroon down(8) equal 87.50,1)}
set{var5,count(var6a below close,1)}
set{var10a,var5 * var4}
set{var10,var10a 1 day ago}
set{var11,var10 * var9}


draw Lower Bollinger Band(20,2)
draw Williams %R(9)
draw Aroon Down(8)

add column Aroon Down(8) {below 76}
add column Williams %R(9) {xabove -50}

var11 above .5
volume above cema(volume,60)
do not draw var11
sort column 6 descending
]




even....


Fetcher[

/* magic box for the basic folk, using the low below bb20 */

set{var6a,close 1 day ago}

set{var1,count(low below Lower Bollinger Band(20,2),1)}
set{var2,count(aroon down(8) above 99,1)}
set{var6,count(close below var6a,1)}
set{var8,var6 * var2}
set{var9a,var1 * var8}
set{var9,var9a 2 day ago}
set{var4,count(aroon down(8) equal 87.50,1)}
set{var5,count(var6a below close,1)}
set{var10a,var5 * var4}
set{var10,var10a 1 day ago}
set{var11,var10 * var9}


draw Lower Bollinger Band(20,2)
draw Williams %R(9)
draw Aroon Down(8)

add column Aroon Down(8) {below 76}
add column Williams %R(9) {xabove -50}

var11 above .5
volume above cema(volume,60)
do not draw var11
sort column 6 descending
]


and the advanced.....


Fetcher[

/* advanced magic box */

set{var6a,close 1 day ago}

set{var1,count(close approaching Lower Bollinger Band(20,2) from above,1)}
set{var2,count(aroon down(8) above 99,1)}
set{var6,count(close below var6a,1)}
set{var8,var6 * var2}
set{var9a,var1 * var8}
set{var9,var9a 2 day ago}
set{var4,count(aroon down(8) equal 87.50,1)}
set{var5,count(var6a below close,1)}
set{var10a,var5 * var4}
set{var10,var10a 1 day ago}
set{var11,var10 * var9}
set{var12,days(var11 above .5,100)}

draw var12

draw Lower Bollinger Band(20,2)
draw Aroon Down(8)
draw Williams %R(9)
add column Aroon Down(8)
add column Williams %R(9)
add column var12 {days passed box }

Williams %R(9) crossed above -50
Aroon Down(8) below 75.1
var12 between .5 and 5.5
volume above cema(volume,60)

]



or even .....



Fetcher[

/* advanced magic box, using the low below bb20 */

set{var6a,close 1 day ago}

set{var1,count(low below Lower Bollinger Band(20,2),1)}
set{var2,count(aroon down(8) above 99,1)}
set{var6,count(close below var6a,1)}
set{var8,var6 * var2}
set{var9a,var1 * var8}
set{var9,var9a 2 day ago}
set{var4,count(aroon down(8) equal 87.50,1)}
set{var5,count(var6a below close,1)}
set{var10a,var5 * var4}
set{var10,var10a 1 day ago}
set{var11,var10 * var9}
set{var12,days(var11 above .5,100)}

draw var12

draw Lower Bollinger Band(20,2)
draw Aroon Down(8)
draw Williams %R(9)
add column Aroon Down(8)
add column Williams %R(9)
add column var12 {days passed box }

Williams %R(9) crossed above -50
Aroon Down(8) below 75.1
var12 between .5 and 5.5
volume above cema(volume,60)

]



chetron
2,817 posts
msg #77543
Ignore chetron
modified
8/13/2009 10:40:00 PM

with fairy box tracker..



Fetcher[

/* magic box for the basic folk */
/* fairy box tracker */

set{var6a,close 1 day ago}

set{var1,count(close approaching Lower Bollinger Band(20,2) from above,1)}
set{var2,count(aroon down(8) above 99,1)}
set{var6,count(close below var6a,1)}
set{var8,var6 * var2}
set{var9a,var1 * var8}
set{var9,var9a 2 day ago}
set{var4,count(aroon down(8) equal 87.50,1)}
set{var5,count(var6a below close,1)}
set{var10a,var5 * var4}
set{var10,var10a 1 day ago}
set{var11,var10 * var9}
set{var21,count(13 day slope upper Bollinger Band(20,2) below -0.5,1)}
set{var24,count(aroon down(8) equal 87.50,1)}
set{var210,var21 * var24}

draw Lower Bollinger Band(20,2)
draw Williams %R(9)
draw Aroon Down(8)
draw var210
add column Aroon Down(8) {below 76}
add column Williams %R(9) {xabove -50}

var11 above .5
volume above cema(volume,60)
do not draw var11
sort column 6 descending

]



billrider321
70 posts
msg #77544
Ignore billrider321
8/14/2009 12:34:43 AM

chet,

some of the picks look good, but can you explain in english what are you looking for

also add a filter for volume > 300000

thanks
Bill

StockFetcher Forums · Filter Exchange · magic box<< 1 2 3 4 >>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.