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: Jules
About
User Name: Jules
Groups: Beta Testers, Gold User, Member, Platinum User, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Unsure
Statistics
Joined: Thursday, October 7, 2004
Last Visit: Tuesday, June 23, 2020 8:09:36 PM
Number of Posts: 36
[0.01% of all post / 0.01 posts per day]
Avatar
Last 10 Posts
Topic: TTM Squeeze Indicator
Posted: Saturday, August 20, 2016 9:15:14 PM

Bruce, Would appreciate also receiving the normal TTM Squeze Indicator. Thanks in advance.

Topic: "coloring" cumulative indicator
Posted: Friday, May 3, 2013 5:05:04 PM

Thanks

Topic: "coloring" cumulative indicator
Posted: Friday, May 3, 2013 3:51:49 PM

Is there a way in TC2000 Beta to "color" a histogram of a cumulative indicator, or any indicator for that matter, such that Up periods are Green and Down periods are Red?

Topic: Moving TC2007 Watchlist to TC2000 V11
Posted: Wednesday, July 6, 2011 10:58:30 AM
Got it!  Just exported my list of interest from TC2007 to a text file and copied and pasted into V11.

May be an easier/more direct way but this worked.
Topic: Moving TC2007 Watchlist to TC2000 V11
Posted: Tuesday, July 5, 2011 8:32:57 PM
How do I move a new TC2007 watchlist to TC2000 V11?
Topic: CHARTING SECOND SYMBOL
Posted: Friday, June 24, 2011 3:27:33 PM
Can I add a second price symbol in a sub-chart in TC2000 v11 as is possible in Stockfinder?
Topic: Cumulative Indicator Settings
Posted: Thursday, February 25, 2010 4:21:59 PM
Bruce, just excellent!
I appreciate your speedy assistance.
Topic: Cumulative Indicator Settings
Posted: Thursday, February 25, 2010 2:26:09 PM
Under a posting by the same subject in StockFinder 4.0 on September 28, 2009 Bruce developed a Real Code solution for a Cumulative Indicator request as follows:

'# Cumulative
Static XavgC(3) As Single
Static sumWeight(3) As Single
Static termRatio(3) As Single
Static Sum As Single
If isFirstBar Then
    For i As Integer = 0 To 3
        sumWeight(i) = 1
    Next
    termRatio(0) = 1 / 3
    termRatio(1) = 2 / 4
    termRatio(2) = 4 / 6
    termRatio(3) = 6 / 8
    Sum = 0
End If
For i As Integer = 0 To 3
    Dim Weight As Single = 1 / sumWeight(i)
    XAVGC(i) = XAVGC(i) * (1 - Weight) + Weight * Price.Last
    sumWeight(i) = sumWeight(i) * termRatio(i) + 1
Next
If XavgC(1) > XavgC(3) Then Sum += 1
If XavgC(0) < XavgC(2) Then Sum -= 1
Plot = Sum
-------------------------------------------------------------------------------------
This works great for me in V4 & V5. However, I would like to change the above Real Code such that I can easily enter variable EMAs but my programming skills are not  yet up to the task.  Would appreciate if you could assist.

 

Topic: Iindicator painting
Posted: Wednesday, December 30, 2009 3:54:12 PM
My moving average indicators which were painted in SF V4 with a Red Down and Green Up scheme did not retain the Paint Scheme on transfer into V5. How do I paint an indicator in SF V5 as opposed to painting Price which is not an issue for me?
As an aside, V5 is much faster than V4 which is a welcome improvement.
Topic: Increasing rule signal width
Posted: Tuesday, June 23, 2009 9:21:05 PM

I use multiple moving average indicator rules across the bottom of the chart  as well as for coloring the moving average lines relative to their up or down movements. Currently when a moving average turns positive the first bar of the rule at the bottom of the chart is a single line. Completion of a second consecutive positive day then forms a clear bar which is much easier to spot.  I would like some way to highlight or mark the first time the moving averages turn positive beyond the current line. For example, a broader line or or a filled circle would be helpful.