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: mrcauldwell
About
User Name: mrcauldwell
Groups: Gold User, Member, Platinum User, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Gender:
Statistics
Joined: Saturday, December 18, 2010
Last Visit: Sunday, April 13, 2014 8:34:40 AM
Number of Posts: 5
[0.00% of all post / 0.00 posts per day]
Avatar
Last 10 Posts
Topic: MACD Histogram
Posted: Saturday, June 9, 2012 9:05:12 PM

If

MACD Histogram Today
(XAVGC20-XAVGC40)-(XAVG(XAVGC30,20)-XAVG(XAVGC40,30))

Does that mean that MACD Histogram ticking up can be calculated by this formula?

(XAVGC20-XAVGC40)-(XAVG(XAVGC30,20)-XAVG(XAVGC40,30)) > (XAVGC20.1-XAVGC40.1)-(XAVG(XAVGC30.1,20)-XAVG(XAVGC40.1,30))

 

Thank you!

Topic: custom indicator (macd-h and 20EMA)
Posted: Sunday, June 3, 2012 4:53:23 PM

I would like to create a custom indicator, but don't know how to write the code in TC2000 v.12.2 to enable it. I would like it to do this:

IF (MACD-Histogram ticks up) AND (20EMA ticks up), THEN return green

IF (MACD-Histogram ticks up) AND (20EMA ticks down), THEN return blue

IF (MACD-Histogram ticks down) AND (20EMA ticks up), THEN return blue

IF (MACD-Histogram ticks down) AND (20EMA ticks down), THEN return red

Any help would be much appreciated. Thanks!

Topic: highest high in last 2days > highest high in last 10 days
Posted: Wednesday, December 22, 2010 2:56:09 PM
Thanks Bruce, that seems to be working great.

I am having problems with creating the condition that a new price high has been made in the last 20 days, but again the code I have written doesn't seem to work.

if Price.High > Price.MaxHigh(20, 1) then pass

Thanks
Topic: TTM Squeeze indicator
Posted: Saturday, December 18, 2010 2:49:00 PM
Hello,

I have also copied and pasted the code to create the ttm squeeze indicator in stockfinder 5. I was wondering if someone could give a brief explanation about the levels we are looking for on the indicator.

For example, less than 1 is when the squeeze is on.

Or, as shown in the ttm video, if we plot the indicator as a bar chart, a possible exit signal is two consecutive declining bars.

Thanks
Topic: highest high in last 2days > highest high in last 10 days
Posted: Saturday, December 18, 2010 2:36:53 PM
Hello,

I'm trying to write code to express:

if the highest high in the last 2 days is greater than the highest high in the last 10 days, then pass.

I wrote this code but it doesn't seem to be working when I use it as a scan:

If (Price.MaxHigh(2) > Price.MaxHigh(8.2)) then pass


Any help would be greatly appreciated. Thanks,

Richard