Jules |
Beta Testers, Gold User, Member, Platinum User, TeleChart
|
Registered User |
|
|
|
|
Unsure |
|
Thursday, October 7, 2004 |
Tuesday, June 23, 2020 8:09:36 PM |
36 [0.01% of all post / 0.00 posts per day] |
|
Bruce, Would appreciate also receiving the normal TTM Squeze Indicator. Thanks in advance.
|
Thanks
|
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?
|
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.
|
How do I move a new TC2007 watchlist to TC2000 V11?
|
Can I add a second price symbol in a sub-chart in TC2000 v11 as is possible in Stockfinder?
|
Bruce, just excellent!
I appreciate your speedy assistance.
|
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.
|
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.
|
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.
|
|