rgwesi |
Gold User, Member, Platinum User, TeleChart
|
Registered User |
|
|
|
|
Unsure |
|
Wednesday, August 13, 2008 |
Monday, January 26, 2015 2:09:10 PM |
44 [0.01% of all post / 0.01 posts per day] |
|
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
|
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.
|
In TC2000 v12.3 In a chart, how do you add a Comparison in Invert form?
|
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.
|
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?
|
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].
|
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?
|
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!
|
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?
|
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
|
|