jhilton |
Member, Platinum User, TeleChart
|
Registered User |
|
|
|
|
Unsure |
|
Friday, July 28, 2006 |
Saturday, August 29, 2015 4:20:20 PM |
36 [0.01% of all post / 0.01 posts per day] |
|
I would like to be able to blot out the middle 50% of a chart so that only the chart portions in the top and bottom 25% of the chart will be visible.
Is it possible to do this?
If so, I would appreciate a litle help.
Thanks.
|
How about an update on the likelihood of making forex data available in SF?
Thanks.
jhilton
|
This code works just fine to produce True Marker hash marks but will not run as a sort:
'# WS1003 = chart.WordenStochastics
If WS1003.MinLow(10) > 80 Or WS1003.MaxHigh(10) < 20 Then pass
Am I doing something wrong?
I get no error message, just nothing from the software but a kind of blink of the screen. And no sort progress bar.
Other conditions sort just fine on my system.
The stoc is a (100,3) Worden Stoc.
|
I just tried it & it's exactly what I want.
Thank you very much.
jhilton
|
I appreciate the information. I see that I have my thinking completely screwed up. I mistakenly assumed that the parameters represented the stoc values as they appear in TC.
What I really need then is an SF Real Code template for translating the cumulative indicator settings in TC into SF.
Can you help me with that, using, say, stoc10.2 and stoc200.70? Or can you set up the template to allow the parameters to vary?
jhilton
|
Hi --
I am trying to create an indicator that increases the cumulative total to plot by a long term stoc value when a short term stoc is > 80 and decreases the plot by the same amount when the short term stoc is < 20.
This is the code I have:
'# Cumulative
Dim x As Single
If isFirstBar Then
x = 0
end if
If Price.STOC(10, 2) > 80 Then
x += Price.STOC(200, 70)
End If
If Price.STOC(10, 2) < 20 Then
x -= Price.STOC(200, 70)
End If
Plot = x
But the plot does not accumulate. From the forums, I thought that changing "Dim" to "Static" would fix the problem, but all that does is make the plot vanish.
I would very much appreciate some help.
jhilton
|
Price History allows SF users to plot yesterday's close line. Is there any way for users to plot yesterday's open, high, and low lines using Real Code (or any other SF facility)?
|
Never Mind, Got it. Didn't see the "exchange" parameter in the watchlist options.
|
Is there any way in TC to limit the stock universe in a watchlist to stocks in the NASDAQ COMPOSITE only? All that can find is the NASDAQ 100, which is much too small for my needs.
|
I just downloaded & installed Blocks 3.0, found & started up your Quick Start Guide. But when I got to the thing I wanted (Indicators), the guide clicks on the Indicators button and shows all sorts of indicators available. When I click on my Indicators button, all I get is a blank.
So, how do I get some indicators to start with?
jhilton
|
|