Free Telechart TC2000 PCF Training Videos TC2000 TCNet Home Page Personal Criteria Formulas TC2000 TCNet PCF Video Download

 

Home

The History of Ramp

Download the Ramp program

The Ramp Instruction Manual

Purchase Ramp

Upgrade Ramp

Guarantee

Links

Training Sites

Reading List

Data Sites

Testimonials

TC2000 and TCNet Page

Sentimentum

 

TC2000 TCNet Scanner Trend Line and Breakout Scan ProgramTC2000 Scan Demonstration Video

TC2000 and TCNet Page

(Scroll down to PCFs)

Ramp is an amazing program that scans TC2000 and TCNet data for any bullish or bearish combination of stock prices breaking out or bouncing off of straight trend lines. You can define the pattern you want or choose from the default settings. Scan thousands of stocks or mutual funds in just minutes to find exactly what you are looking for.

 

   Nebadawn also offers TeleChart TC2000 PCF Training Videos      

Nebadawn, Inc. has created a video tutorial CD with 14 video segments and over two hours of clear detailed instruction on how to write your own Personal Criteria Formulas. Go to Telechart TC2000 PCF Training Videos

Example TC2000 Personal Criteria Formulas that you can use with the Ramp program:

PCF #1 Bullish Rolling Stocks

This personal criteria finds stocks between $2.00 and $100.00 that have had a minimum of 50,000 shares traded each day for the last five days and have upward turned 14/7 Stochastics with a value below 25 yesterday. Stochastics must be viewed in simple mode as opposed to exponential. It is best to buy the stock when the Stochastics crosses up through the signal line and the price is still near the support line. The criteria is broken down with comments below. After the comment section, the entire scan is printed exactly as you would paste it in TC2000.  It is best to cut and past the text directly from the code below.

# 1  -  Volume > 50,000 for last 5 days

((V1 > 500) AND (V2 > 500) AND (V3 > 500) AND (V4 > 500) AND (V5 > 500))AND

# 2  -   Stock Price greater than $2.00

(C > 2)AND

#3  -   Stock Price less than $100.00

(C < 100)AND

#4   -  Stochastics pointed up

(STOC14.7.1 < STOC14.7)AND

#5  -  Stochastics was under 25 yesterday

(STOC14.7.1 < 25)AND

#6  -  The price has been   at least 15% higher in last 30 trading days

(MAXC30.1 > (1.15*C))

Below is the same code without comments. Past this code into TC2000 as a personal criteria for potential rolling stocks. You can then run the Ramp program with this watch list to find the stocks on support.

    ((V1 > 500) AND (V2 > 500) AND (V3 > 500) AND (V4 > 500) AND (V5 > 500)) AND (C > 2) AND (C < 100) AND (STOC14.7.1 < STOC14.7) AND (STOC14.7.1 < 25) AND (MAXC30.1 > (1.15 * C)) ;

PCF #2  Bullish Technical Indicators for Up Trending Stocks

This personal criteria finds stocks above $5.00 that have had over 100,000 shares traded each day for the last five days and have upward pointing 5/34 MACD, 14/7 Stochastics, and 18 day TSV. All indicators must be viewed in simple mode as opposed to exponential. Use this scan to build a watch list of stocks with bullish technical indicators and then run the Ramp program to pull out the ones on support lines. This will give you a very short list of bullish stocks near support. For swing traders who do not have much time to search through charts each day, this is a very fast way to find great entry points quickly. It is best to buy the stock when the technical indicators cross up through their moving average lines and the price is still near the support line. The criteria is broken down with comments below. After the comment section, the entire scan is printed exactly as you would paste it in TC2000.  It is best to cut and past the text directly from the code below.

# 1  -  Volume > 100,000 for last 5 days

((V1 > 1000) AND (V2 > 1000) AND (V3 > 1000) AND (V4 > 1000) AND (V5 > 1000))AND

# 2  -   Stock Price greater than $5.00

(C > 5)AND

# 3  -  MACD 5-34 pointed up

((1.1724 * C5) - (0.1724 * C34) < C) AND

 #4   -  Stochastics pointed up

(STOC14.7.1 < STOC14.7)AND

#5  -  TSV pointed up

(TSV18 >TSV18.1)

Below is the same code without comments. Past this code into TC2000 as a personal criteria. You can then run the Ramp program with this watch list to find the stocks on support.

((V1 > 1000) AND (V2 > 1000) AND (V3 > 1000) AND (V4 > 1000) AND (V5 > 1000))AND(C > 5)AND((1.1724 * C5) - (0.1724 * C34) < C) AND(STOC14.7.1 < STOC14.7)AND(TSV18 >TSV18.1)

PCF #3 Bullish Turn Candlestick Patterns:

This PCF is a combination of three bullish reversal candlestick patterns. The intent is to find any one of the three patterns. Under the "All Together" heading, the three patterns are joined by "or"s so that any one of the three will be found.

Bullish Engulfing:
(O1 > C1) AND (C > O1) AND (O <= C1)
Morning Star:
(O2>C2) and (C1<C2) and (O1<C2) and (C1<O) and (O1<O) and (C>O) and (C>C2)
One Day Reversal:
(O1>C1) and (O<=C) and ((H-C)/(H-L)<0.3) and ((H-O)/(H-L)<0.3) and (L<L1) and (L1<L2)
All together:
((O1 > C1) AND (C > O1) AND (O <= C1))or
((O2>C2) and (C1<C2) and (O1<C2) and (C1<O) and (O1<O) and (C>O) and (C>C2)) or
((O1>C1) and (O<=C) and ((H-C)/(H-L)<0.3) and ((H-O)/(H-L)<0.3) and (L<L1) and (L1<L2))

PCF #4  Simple MACD crossing through signal line.

The (8-17-9) MACD today is greater than the 9 DMA of the oscillator itself and the MACD yesterday is less than the 9 DMA of the oscillator. 

(AVGC8.1 - AVGC17.1) <

((AVGC8.1 - AVGC17.1) +

(AVGC8.2 - AVGC17.2) +

(AVGC8.3 - AVGC17.3) +

(AVGC8.4 - AVGC17.4) +

(AVGC8.5 - AVGC17.5) +

(AVGC8.6 - AVGC17.6) +

(AVGC8.7 - AVGC17.7) +

(AVGC8.8 - AVGC17.8) +

(AVGC8.9 - AVGC17.9)) / 9  

AND 

(AVGC8 - AVGC17) >

((AVGC8 - AVGC17) +

(AVGC8.1 - AVGC17.1) +

(AVGC8.2 - AVGC17.2) +

(AVGC8.3 - AVGC17.3) +

(AVGC8.4 - AVGC17.4) +

(AVGC8.5 - AVGC17.5) +

(AVGC8.6 - AVGC17.6) +

(AVGC8.7 - AVGC17.7) +

(AVGC8.8 - AVGC17.8)) / 9

PCF #5  The 18 day MA greater than the 40 day MA for the last 30 days.

This example will find stocks that have been up trending for the last 30 days. It is included as an example of how to construct a PCF that checks a condition for a number of days. 

(AVGC18 > AVGC40) and

(AVGC18.1 > AVGC40.1) and

(AVGC18.2 > AVGC40.2) and

(AVGC18.3 > AVGC40.3) and

(AVGC18.4 > AVGC40.4) and

(AVGC18.5 > AVGC40.5) and

(AVGC18.6 > AVGC40.6) and

(AVGC18.7 > AVGC40.7) and

(AVGC18.8 > AVGC40.8) and

(AVGC18.9 > AVGC40.9) and

(AVGC18.10 > AVGC40.10) and

(AVGC18.11 > AVGC40.11) and

(AVGC18.12 > AVGC40.12) and

(AVGC18.13 > AVGC40.13) and

(AVGC18.14 > AVGC40.14) and

(AVGC18.15 > AVGC40.15) and

(AVGC18.16 > AVGC40.16) and

(AVGC18.17 > AVGC40.17) and

(AVGC18.18 > AVGC40.18) and

(AVGC18.19 > AVGC40.19) and

(AVGC18.20 > AVGC40.20) and

(AVGC18.21 > AVGC40.21) and

(AVGC18.22 > AVGC40.22) and

(AVGC18.23 > AVGC40.23) and

(AVGC18.24 > AVGC40.24) and

(AVGC18.25 > AVGC40.25) and

(AVGC18.26 > AVGC40.26) and

(AVGC18.27 > AVGC40.27) and

(AVGC18.28 > AVGC40.28) and

(AVGC18.29 > AVGC40.29) and

(AVGC18.30 > AVGC40.30)

Nebadawn, Inc. Contact Information:

Please feel free to contact our offices. We would love to hear from you and answer any questions.

Telephone
509-926-1055
 
FAX
603-309-0388
 
Postal address
Nebadawn, Inc.
PO Box 101
Veradale, WA 99037-0101
 
Electronic mail
Webmaster: webmaster@nebadawn.com

Disclaimer:

Nebadawn, Inc. assumes no responsibility for actions taken by any individual using the Ramp program to make investment decisions.  Nebadawn, Inc. employees are not brokers or investment counselors and are not providing investment advice.  The use of Nebadawn Inc.'s products implies no claims, promises, or guarantees that any suggestion, system, trading strategy, or information will result in a profit, loss, or any other desired result.  All users of Nebadawn Inc.'s products assume all risk, including, but not limited to, the risk of losses.

Links

---- Home ---- Back to MetaStock, TC2000 and TCNet Trend Line Scanner Home Page

nebadawn       pcf page      tcnet page       todayscharts.com       fibonacci      pcf video download       cnbc      free-stock-market-quotes      sector watches      penney stocks       Personal Criteria Formulas