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: rgwesi
About
User Name: rgwesi
Groups: Gold User, Member, Platinum User, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Unsure
Statistics
Joined: Wednesday, August 13, 2008
Last Visit: Monday, January 26, 2015 2:09:10 PM
Number of Posts: 44
[0.01% of all post / 0.01 posts per day]
Avatar
Last 10 Posts
Topic: Histogram Indicator
Posted: Tuesday, February 26, 2013 8:20:27 PM

rgwesi
In TC2000v12.3

How Do you make a histogram out of Price crossing up a MVWAP and down a MVWAP? To turn red when Price crosses down through MVWAP and green when Price crosses up through MVWAP

Topic: Pin Up An Indicator
Posted: Wednesday, February 6, 2013 3:37:53 PM

QUOTE (Bruce_L)

There is no way to pin an indicator in TC2000 version 12.3 currently. About the closest thing you can do is slide the dividing line between two panes to minimize the pane to a sliver of its original size. You can do this by placing the mouse pointer on the dividing line between the two panes. When it turns into an arrow pointing both up and down, you can left-click and drag to move the dividing line.

Thank you for your suggestion. It has been assigned case number 10201.

What I was thinking was an Indicator on the same chart as Price not on a different pane. In fact you can Pin up Indicators which have their own pane.

Topic: Invert a Chart Comparison
Posted: Wednesday, February 6, 2013 3:18:52 PM

In TC2000 v12.3 In a chart, how do you add a  Comparison in Invert form?

Topic: Pin Up An Indicator
Posted: Wednesday, February 6, 2013 3:16:24 PM

In TC2000 v12.3 How do you pin up an Indicator? Why do I want to do that? When running multiple Indicators, sometime you just want to turn off or pin up an Indicator temporary, just to see the other Indicators and how they interact. Currently all I know how to do is remove the Indicator and add it back later [very time consuming.

Topic: Price Disparity in 3 Charts of Same Symbol
Posted: Wednesday, February 6, 2013 2:54:06 PM

TC2000 v12.3 -running three charts of same symbol, 2min, 5min, 15, min, But the last price on each do not always match. WHY? [referring to the white box that goes up and down the price scale indicating the last price of a sale] somethimes there is a longer delay in them matching up. Should they not all tick at the same time?

Topic: How To Construct a Chart
Posted: Friday, April 13, 2012 2:07:44 PM

How do I do a single chart on TC2000v12.1 of the moving prices of two different stocks [not thru the comparison method as it is not to scale] I want to use the same scale but plot two stock prices [moving averages].

Topic: How To Blank Out Indicators
Posted: Monday, December 26, 2011 2:15:48 PM
In TC2000 v12, How Do I blank out [without removing] an indicator(s) for temporary viewing of other indicators. In other words, Once I set up all my indicators, I want to be able to turn on an indicator and turn it off from time to time without replacing or removing it. how do you do that? This would enable me to see several indicators at one time and add others as I want to see them. Obviously, I can remove an indicator or color it so it does not show, but that takes too much time! There has to be a simple way to accomplish this?
Topic: TC2000 v12 Bar Limits
Posted: Thursday, December 15, 2011 4:09:44 PM
Why is TC2000 v12 limited to only a maximum of 500 bars?
In Stockfinder you can have upto 5000 bars.
Is there a way to have 5000 bars on TC2000 v12; especially intraday charts!
Topic: Indicator Moving Line Regression
Posted: Thursday, December 15, 2011 4:04:00 PM
How do I add the Indicator "Moving Line Regression" in SF5.1 Build 18. The Indicator is already in TC2000 v12, so how can I add it to SF?
Topic: Converting Real Code
Posted: Thursday, October 7, 2010 3:06:05 PM
Can You convert the following into Real Code. I tried but there were lots of errors:
Code 001:
Sub VolBandExtremes(Length,Mult)
Dim TXMA, ZL_TXMA As BarArray
Dim StDev, BandHigh, BandLow, BandWidth
Dim PctBand
Dim BuyThresh, SellThresh
BuyThresh = 0.2
SellThresh = 0.8
TXMA = TEMAPlus(Close, Length, 0)
ZL_TXMA = ZL_TEMA(TXMA, Length, 0)
If ZL_TXMA[Length-1] > 0 Then
StDev = StdDevPlus(Close, ZL_TXMA, Length)*Mult
BandHigh = ZL_TXMA+StDev
BandLow = ZL_TXMA-StDev
BandWidth = (BandHigh - BandLow)
If BandWidth > 0 Then
PctBand = (Close - BandLow) / BandWidth
Else
PctBand = 0.5
End If
End If
If CrossesUnder(PctBand,BuyThresh) Then
Buy ("LowBandBuy",1,0,Market,Day)
End If
If CrossesOver(PctBand,SellThresh) Then
Sell ("HighBandSell",1,0,Market,Day)
End If
End Sub




Code 002:
Sub VolBandBreakout(Length,ChanLen,Mult)
Dim TXMA As BarArray
Dim ZL_TXMA As BarArray
Dim BandH,BandL As BarArray
Dim StDev
TXMA = TEMAPlus(C, Length, 0)
ZL_TXMA = ZL_TEMA(TXMA, Length, 0)
If ZL_TXMA[Length-1] > 0 Then
StDev = MovingStDev(C, ZL_TXMA, Length, Mult)
End If
BandH = ZL_TXMA+StDev
BandL = ZL_TXMA-StDev
If (BandH - BandL) <> 0 Then
Buy("BandBreakBuy",1,Highest(BandH,ChanLen,0)+GetActiveMinMove(),Stop,Day)
Sell("BandBreakSell",1,Lowest(BandL,ChanLen,0)-GetActiveMinMove(),Stop,Day)
End If
End Sub

Thanks,
(email removed by moderator)
Roger Goshen