StockFetcher Forums · General Discussion · Guys I need help - Adding all fibs to a scan<< >>Post Follow-up
PopeJimmy
10 posts
msg #69903
Ignore PopeJimmy
12/17/2008 4:10:57 PM

Hi Guys, I've posted a couple of times before asking about this but surprisingly no ones been able to give me advice on how to do this.

I simply want to run a scan with all the basic fibs included in it. As it is now I must have over 10 individual fib scans and I've finally run out of room so I decided to post again.

I basically have a bunch of individual scans like this:

/* Fibonacci 382 */
Show stocks where Fibonacci Up(120,20) is near 0.382


Thanks


chetron
2,817 posts
msg #69905
Ignore chetron
12/17/2008 5:23:18 PM

maybe...


Fetcher[


set{F000,count(Fibonacci Up(120,20) is near 0.000,1)}
set{F240,count(Fibonacci Up(120,20) is near 0.240,1)}
set{F382,count(Fibonacci Up(120,20) is near 0.382,1)}
set{F500,count(Fibonacci Up(120,20) is near 0.500,1)}
set{F618,count(Fibonacci Up(120,20) is near 0.618,1)}
set{F786,count(Fibonacci Up(120,20) is near 0.786,1)}
set{F1000,count(Fibonacci Up(120,20) is near 1.000,1)}

SET{VAR1,F000 + F240}
SET{VAR2,VAR1+ F382}
SET{VAR3,VAR2 + F500}
SET{VAR4,VAR3+ F618}
SET{VAR5,VAR4 + F786}
SET{VAR6,VAR5 + F1000}

VAR6 ABOVE .5

ADD COLUMN F000
ADD COLUMN F240
ADD COLUMN F382
ADD COLUMN F500
ADD COLUMN F618
ADD COLUMN F786
ADD COLUMN F1000



DRAW FIBONACCI UP(120,20)


]









chetron
2,817 posts
msg #69907
Ignore chetron
12/17/2008 6:02:38 PM

BUT IF YOU REALLY WANT ALL......


Fetcher[




set{F000,count(Fibonacci Up(120,20) is near 0.000,1)}
set{F240,count(Fibonacci Up(120,20) is near 0.240,1)}
set{F382,count(Fibonacci Up(120,20) is near 0.382,1)}
set{F500,count(Fibonacci Up(120,20) is near 0.500,1)}
set{F618,count(Fibonacci Up(120,20) is near 0.618,1)}
set{F786,count(Fibonacci Up(120,20) is near 0.786,1)}
set{F1000,count(Fibonacci Up(120,20) is near 1.000,1)}

SET{VAR1,F000 + F240}
SET{VAR2,VAR1+ F382}
SET{VAR3,VAR2 + F500}
SET{VAR4,VAR3+ F618}
SET{VAR5,VAR4 + F786}
SET{VAR6,VAR5 + F1000}


set{F000D,count(Fibonacci DOWN(120,20) is near 0.000,1)}
set{F240D,count(Fibonacci DOWN(120,20) is near 0.240,1)}
set{F382D,count(Fibonacci DOWN(120,20) is near 0.382,1)}
set{F500D,count(Fibonacci DOWN(120,20) is near 0.500,1)}
set{F618D,count(Fibonacci DOWN(120,20) is near 0.618,1)}
set{F786D,count(Fibonacci DOWN(120,20) is near 0.786,1)}
set{F1000D,count(Fibonacci DOWN(120,20) is near 1.000,1)}

SET{VAR11,F000D + F240D}
SET{VAR12,VAR11+ F382D}
SET{VAR13,VAR12 + F500D}
SET{VAR14,VAR13+ F618D}
SET{VAR15,VAR14 + F786D}
SET{VAR16,VAR15 + F1000D}

SET{VAR26,VAR6 + VAR16}

VAR26 ABOVE .5

ADD COLUMN F000D
ADD COLUMN F240D
ADD COLUMN F382D
ADD COLUMN F500D
ADD COLUMN F618D
ADD COLUMN F786D
ADD COLUMN F1000D



DRAW FIBONACCI DOWN(120,20)



ADD COLUMN F000
ADD COLUMN F240
ADD COLUMN F382
ADD COLUMN F500
ADD COLUMN F618
ADD COLUMN F786
ADD COLUMN F1000



DRAW FIBONACCI UP(120,20)



]



tomm1111
202 posts
msg #73657
Ignore tomm1111
modified
4/19/2009 1:54:38 AM

Chetron, Nice filter. When the market starts to retrace, I'll be looking for those at 100 and 78.6.

tomm1111
202 posts
msg #73658
Ignore tomm1111
4/19/2009 2:01:15 AM

Same filter, shorter period. Use different periods to screen for candidates.


Fetcher[
set{F000,count(Fibonacci Up(65,10) is near 0.000,1)}
set{F240,count(Fibonacci Up(65,10) is near 0.240,1)}
set{F382,count(Fibonacci Up(65,10) is near 0.382,1)}
set{F500,count(Fibonacci Up(65,10) is near 0.500,1)}
set{F618,count(Fibonacci Up(65,10) is near 0.618,1)}
set{F786,count(Fibonacci Up(65,10) is near 0.786,1)}
set{F1000,count(Fibonacci Up(65,10) is near 1.000,1)}

SET{VAR1,F000 + F240}
SET{VAR2,VAR1+ F382}
SET{VAR3,VAR2 + F500}
SET{VAR4,VAR3+ F618}
SET{VAR5,VAR4 + F786}
SET{VAR6,VAR5 + F1000}


set{F000D,count(Fibonacci DOWN(65,10) is near 0.000,1)}
set{F240D,count(Fibonacci DOWN(65,10) is near 0.240,1)}
set{F382D,count(Fibonacci DOWN(65,10) is near 0.382,1)}
set{F500D,count(Fibonacci DOWN(65,10) is near 0.500,1)}
set{F618D,count(Fibonacci DOWN(65,10) is near 0.618,1)}
set{F786D,count(Fibonacci DOWN(65,10) is near 0.786,1)}
set{F1000D,count(Fibonacci DOWN(65,10) is near 1.000,1)}

SET{VAR11,F000D + F240D}
SET{VAR12,VAR11+ F382D}
SET{VAR13,VAR12 + F500D}
SET{VAR14,VAR13+ F618D}
SET{VAR15,VAR14 + F786D}
SET{VAR16,VAR15 + F1000D}

SET{VAR26,VAR6 + VAR16}

VAR26 ABOVE .5

ADD COLUMN F000D
ADD COLUMN F240D
ADD COLUMN F382D
ADD COLUMN F500D
ADD COLUMN F618D
ADD COLUMN F786D
ADD COLUMN F1000D



DRAW FIBONACCI DOWN(65,10)



ADD COLUMN F000
ADD COLUMN F240
ADD COLUMN F382
ADD COLUMN F500
ADD COLUMN F618
ADD COLUMN F786
ADD COLUMN F1000



DRAW FIBONACCI UP(65,10)
]







StockFetcher Forums · General Discussion · Guys I need help - Adding all fibs to a scan<< >>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.