Download software Tutorial videos
Subscription & data-feed pricing Class schedule


New account application Trading resources
Margin rates Stock & option commissions

Attention: Discussion forums are read-only for extended maintenance until further notice.
Welcome Guest, please sign in to participate in a discussion. Search | Active Topics |

Profile: jackmanjls
About
User Name: jackmanjls
Groups: Gold User, Member, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Gender:
Statistics
Joined: Monday, September 28, 2009
Last Visit: Tuesday, April 1, 2014 9:44:18 PM
Number of Posts: 135
[0.05% of all post / 0.03 posts per day]
Avatar
Last 10 Posts
Topic: Explain MAXC120.60
Posted: Monday, January 13, 2014 8:21:49 AM

I watched one of the vids and to find resistance the person used the formula:

c=max120 AND c>(maxc120.60)*.99 AND c<(maxc120.60)*1.01

Can you explain the what maxc120.60 does?

Topic: Understanding AVGC5.1
Posted: Monday, May 6, 2013 8:21:21 PM

Let&#39;s assume that i have the following close values:

1, 2, 3, 4, 5, 6

Assume that I&#39;m processing the value: 6. In my logic as I&#39;m processing 6 I get to a point where I want to process AVGC5.1.

Is this saying to take the SMA of the close and start at close=5.

So, the SMA would be (1+2+3+4+5)/5?

Topic: list of PCF candle patterns
Posted: Monday, May 6, 2013 9:18:29 AM

At one time I saw a the list of PCF&#39;s for various candle patterns. Where is this loacated?

 

Thanks.

Topic: Avg of $Vol
Posted: Friday, March 1, 2013 8:11:32 AM

The formula for TC Volume(Dollars) n-day is avgCn*avgVn/100.

I want to smooth this result. When n-day = 5-day it&#39;s choppy.

Is there anyway to take the avg of the results from the above?

 

Topic: avgc90 Time frame
Posted: Thursday, February 28, 2013 11:35:52 AM

Does this avg the close for the last 90 calendar days or trading days?

Topic: Stoch indicator
Posted: Friday, January 11, 2013 6:28:02 PM

Bruce...nice catch. That explains why every so often I&#39;m getting unexpected results.

Good job.

Topic: Stoch indicator
Posted: Friday, January 11, 2013 8:18:13 AM

Bruce can you verify that this is good approach or is there a better approach?

The code is as follows:

if  at least 1 of the bars for the previous 4 days has the %K < %D AND

stoc10.3.1 < xavg(stoc10.3.1,5) or

stoc10.3.2 < xavg(stoc10.3.2,5) or

stoc10.3.3 < xavg(stoc10.3.3,5) or

stoc10.3.4 < xavg(stoc10.3.4,5)

if  at lease 1 of the bars for the same 4 days the %K and %D has been < 30  then

stoc10.3.1 < 30 or xavg(stoc10.3.1,5) <30 or

stoc10.3.2 < 30 or xavg(stoc10.3.2,5) <30 or

stoc10.3.3 < 30 or xavg(stoc10.3.3,5) <30 or

stoc10.3.4 < 30 or xavg(stoc10.3.4,5) <30

I have verified that the above is valid.

Topic: Stoch indicator
Posted: Friday, January 11, 2013 5:39:56 AM

Re: TC12.3.

After viewing the help vids I&#39;ve determined how to do: "if today&#39;s %K > today&#39;s %D AND"

I still haven&#39;t figured out the balance of my q, ie,

if  at least 1 of the bars for the previous 4 days has the %K < %D AND

        if  at lease 1 of the bars for the same 4 days the %K and %D has been < 30  then

            the condition if true.

At this point I think the issue is how do I look back at the 4 previous bars. Once I get that resolved I can complete the scan.

 

Topic: Stoch indicator
Posted: Thursday, January 10, 2013 7:41:48 PM

Using the stoch 10 %K 3, E xp %D 5 I want to create a condition that is true when the following is met.

if today&#39;s %K > today&#39;s %D AND

    if  at least 1 of the bars for the previous 4 days has the %K < %D AND

        if  at lease 1 of the bars for the same 4 days the %K and %D has been < 30  then

            the condition if true.

Any ideas?

Topic: Avg of Beta
Posted: Monday, January 7, 2013 3:38:51 PM

I want to take the n-day avg of Beta for ETF&#39;s.

How would I do this in TC12.3. I written many pcf&#39;s so just need to know the approach.