StockFetcher Forums · Filter Exchange · Help translating TC2000 Formulas?<< >>Post Follow-up
anollmann
2 posts
msg #62129
Ignore anollmann
5/4/2008 7:41:50 PM

I found some hold formulas that I used to use a few years back. Can anyone help me translate them to work in SF?

*Spring on Current Bar
V > V1 AND (H - L) / V < (H1 - L1) / V1

*Spring on Previous Bar
V1 > V2 AND (H1 - L1) / V1 < (H2 - L2) / V2

*Stocks 15 - 25%…Long
AVGC20 >= (H * 1.15) and AVGC20 <= (H * 1.25)

*Stocks > 25%…Long
AVGC20 > (H * 1.25)

*Stocks 15 - 25%…Short
AVGC20 * 1.18 <= L AND AVGC20 * 1.33 >= L

*Stocks >25%…Short
AVGC20 * 1.33 < L

*Long Reversal Bar
H < H1 AND L < L1 AND C > ((H + L) / 2)

*Short Reversal Bar
H > H1 AND L > L1 AND ((H + L) / 2) > C

Thank you!

Alex

nikoschopen
2,824 posts
msg #62130
Ignore nikoschopen
5/4/2008 8:45:14 PM

*Spring on Current Bar
V > V1 AND (H - L) / V < (H1 - L1) / V1


Fetcher[
Volume > Volume 1 day ago
set{ratio, day point range / volume}
ratio < ratio 1 day ago
]


*Spring on Previous Bar
V1 > V2 AND (H1 - L1) / V1 < (H2 - L2) / V2


Fetcher[
Volume 1 day ago > Volume 2 days ago
set{ratio, day point range / volume}
ratio 1 day ago < ratio 2 days ago
]


*Stocks 15 - 25%…Long
AVGC20 >= (H * 1.15) and AVGC20 <= (H * 1.25)


Fetcher[
set{AVGC20, sum(close,20) / 20}
set{Hi1, high * 1.15}
set{Hi2, high * 1.25}
set{ratio, count(AVGC20 above hi1,1) * count(AVGC20 below hi2,1)}
ratio equals 1
]


*Stocks > 25%…Long
AVGC20 > (H * 1.25)


This is identical to the previous filter. Try to write ure own based on what's written above.

*Stocks 15 - 25%…Short
AVGC20 * 1.18 <= L AND AVGC20 * 1.33 >= L


Fetcher[
set{AVGC20, sum(close,20) / 20}
set{C118, AVGC20 * 1.18}
set{C133, AVGC20 * 1.33}
set{ratio, count(low above C118,1) * count(low below C133,1)}
ratio equals 1
]


*Stocks >25%…Short
AVGC20 * 1.33 < L


This is identical to the previous filter. Try to write ure own based on what's written above.

*Long Reversal Bar
H < H1 AND L < L1 AND C > ((H + L) / 2)


Fetcher[
high < high 1 day ago
low < low 1 day ago
close > Day Position(0.50,1)
]


*Short Reversal Bar
H > H1 AND L > L1 AND ((H + L) / 2) > C


This is identical to the previous filter. Try to write ure own based on what's written above.

StockFetcher Forums · Filter Exchange · Help translating TC2000 Formulas?<< >>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.