StockFetcher Forums · Filter Exchange · I am DONE with INDICATORS !!<< 1 2 3 4 5 >>Post Follow-up
tomm1111
202 posts
msg #68250
Ignore tomm1111
10/10/2008 1:14:25 AM

Sqwii,

I recommend that you sit on your cash, paper trade for about 6 months, and learn. When you have a system, on paper, that works only then you should be ready to trade with real money. Do not think that this is easy. Survival should be your #1 objective as you start out.

tomm

mystiq
650 posts
msg #68251
Ignore mystiq
10/10/2008 4:13:21 AM

TheRumpledOne
- Ignore TheRumpledOne 10/9/2008 9:19:28 PM

I don't need indicators.

Just statistics and horizontal lines
=======================================
TRO-----> can you post some STATISTICS code for general filters...? like generic ones where it could be edited/tweeked for individual use..? (-.-) -thx



luc1grunt
622 posts
msg #68255
Ignore luc1grunt
modified
10/10/2008 6:42:11 AM

mystic, before Avery jumps all over ya, pull his statistics filters (all over the filter forum...gap, rfr, slow cooker, etc., etc., etc.).

Look at the code and understand what it represents. Then apply you criteria (stock price, volume etc.).

start here...................... http://forums.stockfetcher.com/sfforums/?q=view&fid=1002&tid=45054&qrid=

:)

TheRumpledOne
6,407 posts
msg #68286
Ignore TheRumpledOne
10/10/2008 4:04:20 PM

Image and video hosting by TinyPic

HORIZONTAL LINES ARE ALL YOU NEED!


No need to jump on anyone. They'll figure it out. Thanks for helping.

chetron
2,817 posts
msg #68294
Ignore chetron
modified
10/10/2008 10:24:31 PM

FINE, MAYBE ....................


Fetcher[

/* TACHIKAWA */

SET{VHIGH,HIGH 1 DAY AGO}
SET{VLOW,LOW 1 DAY AGO}
SET{VAR1,HIGH + LOW}
SET{VMED,VAR1 / 2}

SET{VR2,VHIGH 34 DAY HIGH}
SET{VS1,VHIGH 34 DAY LOW}
SET{VR1,VLOW 34 DAY HIGH}
SET{VS2,VLOW 34 DAY LOW}

SET{VAR11,VR1 - VS1}
SET{VAR12,VAR11 / OPEN}
SET{PROPHET,VAR12 * 100}

SET{VHT1C,COUNT(CLOSE BELOW VR2 ,1)}
SET{VHT2C,COUNT(CLOSE ABOVE VR1,1)}

SET{VHTC,VHT1C * VHT2C}

SET{VLT1C,COUNT(CLOSE ABOVE VS2 ,1)}
SET{VLT2C,COUNT(CLOSE BELOW VS1,1)}

SET{VLTC,VLT1C * VLT2C}


SET{VHT1M,COUNT(VMED BELOW VR2 ,1)}
SET{VHT2M,COUNT(VMED ABOVE VR1,1)}

SET{VHTM,VHT1M * VHT2M}

SET{VLT1M,COUNT(VMED ABOVE VS2 ,1)}
SET{VLT2M,COUNT(VMED BELOW VS1,1)}

SET{VLTM,VLT1M * VLT2M}

SET{VHT1O,COUNT(OPEN BELOW VR2 ,1)}
SET{VHT2O,COUNT(OPEN ABOVE VR1,1)}

SET{VHTO,VHT1O * VHT2O}

SET{VLT1O,COUNT(OPEN ABOVE VS2 ,1)}
SET{VLT2O,COUNT(OPEN BELOW VS1,1)}

SET{VLTO,VLT1O * VLT2O}

SET{VHT1H,COUNT(HIGH BELOW VR2 ,1)}
SET{VHT2H,COUNT(HIGH ABOVE VR1,1)}

SET{VHTH,VHT1H * VHT2H}

SET{VLT1H,COUNT(HIGH ABOVE VS2 ,1)}
SET{VLT2H,COUNT(HIGH BELOW VS1,1)}

SET{VLTH,VLT1H * VLT2H}

SET{VHT1L,COUNT(LOW BELOW VR2 ,1)}
SET{VHT2L,COUNT(LOW ABOVE VR1,1)}

SET{VHTL,VHT1L * VHT2L}

SET{VLT1L,COUNT(LOW ABOVE VS2 ,1)}
SET{VLT2L,COUNT(LOW BELOW VS1,1)}

SET{VLTL,VLT1L * VLT2L}


SET{PICKSA,VLTO + VHTO}
SET{PICKSB,VLTC + VHTC}
SET{PICKSC,VLTH + VHTH}
SET{PICKSD,VLTL + VHTL}
SET{PICKSE,VLTM + VHTM}
SET{PICKSF,PICKSA + PICKSB}
SET{PICKSG,PICKSC + PICKSD}
SET{PICKSH,PICKSE + PICKSF}
SET{PICKS,PICKSG + PICKSH}

SET{VGAPD1,VLOW - HIGH}
SET{VGAPU1,LOW - VHIGH}

SET{VGAPD,COUNT(VGAPD1 ABOVE -0.00,8)}
SET{VGAPU,COUNT(VGAPU1 ABOVE -0.00,8)}

SET{GAPACTION,VGAPD + VGAPU}

DRAW VGAPU ON PLOT VGAPD

set{sto14_1,fast stochastic(14) fast %k 1 day ago}
set{stodiff,sto14_1 - fast stochastic(14) fast %k}

add column stodiff
add column fast stochastic(14) fast %k
add column sto14_1
ADD COLUMN VGAPD
ADD COLUMN VGAPU
ADD COLUMN GAPACTION

ADD COLUMN PROPHET

DRAW VMED ON PLOT PRICE
DRAW PRICE LINE AT VR2
DRAW PRICE LINE AT VR1
DRAW PRICE LINE AT VS1
DRAW PRICE LINE AT VS2


VOLUME ABOVE 100000
PICKS ABOVE .5
PROPHET ABOVE 10
PROPHET BELOW 101

]



mystiq
650 posts
msg #68304
Ignore mystiq
10/11/2008 6:01:19 AM

luc1grunt
- Ignore luc1grunt
modified 10/10/2008 6:42:11 AM

mystic, before Avery jumps all over ya, pull his statistics filters (all over the filter forum...gap, rfr, slow cooker, etc., etc., etc.).

Look at the code and understand what it represents. Then apply you criteria (stock price, volume etc.).

start here...................... http://forums.stockfetcher.com/sfforums/?q=view&fid=1002&tid=45054&qrid=

:)

TheRumpledOne
- Ignore TheRumpledOne 10/10/2008 4:04:20 PM

HORIZONTAL LINES ARE ALL YOU NEED!

No need to jump on anyone. They'll figure it out. Thanks for helping.
============================================================

thx guys--- (-.-)

luc1grunt
622 posts
msg #68307
Ignore luc1grunt
10/11/2008 8:23:11 AM

statistic based and triangle based day trades are my consistent winners. Exploit what works for you and refine your weak areas=success. Simple when all the clutter shakes out. Stay on target.

TheRumpledOne
6,407 posts
msg #68310
Ignore TheRumpledOne
10/11/2008 2:12:06 PM

Pepto? Never have used that. Don't need to.



johnpaulca
12,036 posts
msg #68313
Ignore johnpaulca
10/11/2008 9:11:04 PM

If you had fade the gap this past week with SPF you would be 5 for 5....no stress, no indicators and no pepto.

hfilty
16 posts
msg #68319
Ignore hfilty
10/12/2008 1:50:02 AM

TRO can you explain how do you use this lines, thanks in advance

StockFetcher Forums · Filter Exchange · I am DONE with INDICATORS !!<< 1 2 3 4 5 >>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.