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: eroberts911
About
User Name: eroberts911
Groups: Gold User, Member, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Unsure
Statistics
Joined: Tuesday, October 14, 2008
Last Visit: Sunday, June 24, 2012 5:11:12 PM
Number of Posts: 23
[0.01% of all post / 0.00 posts per day]
Avatar
Last 10 Posts
Topic: Watchlist Import
Posted: Wednesday, May 12, 2010 9:45:55 AM
Thanks Bruce. Great idea. This will serve me well.
Topic: Watchlist Import
Posted: Wednesday, May 12, 2010 6:56:07 AM
How can I import a Stockfinder 4 watchlist into Stockfinder 5?
Topic: Preserving Code format in Posts to Trainer
Posted: Saturday, April 10, 2010 1:47:23 PM
Whenever I copy a sample of Code in a new post, the posted version of the code all runs together, making it difficult to read. I notice other's posts contain properly formatted code. How do I do this?
Topic: RealCode Syntax
Posted: Saturday, April 10, 2010 1:23:28 PM
I'm creating a realcode paintbrush. I'm using a moving average and MACD histogram. The system automatically created '# variables named MA and MH, resp. I'm getting an error message "MA not declared" and "MH not declared" Doesn't the '# line constitute a declaration? Code as Follows: '# MH = indicator.MACDHistogram '# MA = indicator.MovingAverage.6 '11Bar EMA If MA.Value > MA.Value(1) And MH.Value > MH.Value(1) Then PlotColor = Color.Green ElseIf MA.Value
Topic: RealCode Debugging
Posted: Tuesday, April 6, 2010 3:46:36 PM
Sorry, Guys, should have posted above as new topic. I did that, but created a duplication in your post list
Topic: Trouble saving chart
Posted: Tuesday, April 6, 2010 3:44:16 PM
Thanks, Bruce. Show Custom Labels was the answer. Another problem:Getting an error message when trying to save chart.First line of error message is "System.NullReferenceException: Object reference not set to an instance of an object." (I'm trying to save a realcode indicator that uses another indicator on the chart.)Can you help me?
Topic: RealCode Debugging
Posted: Tuesday, April 6, 2010 3:42:33 PM
Thanks, Bruce. Show Custom Labels was the answer. Another problem:Getting an error message when trying to save chart.First line of error message is "System.NullReferenceException: Object reference not set to an instance of an object." (I'm trying to save a realcode indicator that uses another indicator on the chart.)Can you help me?
Topic: RealCode Debugging
Posted: Tuesday, April 6, 2010 11:55:59 AM
Thanks, Stockguy, You were right - I was trying to compile an indicator with the Rule compiler. Another problem:I'm trying to debug using the LABEL keyword to print out intermediate calculations (for a RealCode indicator). Compiles with no errors, but no labels are printing. Below is a copy of my code. (First stage of Elder's SafeZone indicator): '# Lookback = UserInput.integer = 10 '# Factor = UserInput.single =2.0 Dim SumPenLow As Single = 0 Dim NumPenLow As Integer = 0 Dim AvgPenLow As Single = 0 SumPenLow = 0 NumPenLow = 0 For i As Integer = 1 To Lookback If Price.Low(i - 1)
Topic: RealCode error
Posted: Friday, April 2, 2010 3:16:13 PM
I'm trying to create a new indicator in Real Code, and am having trouble compiling it. The only error message the compiler is sending is for the last line which is:Plot= Price.low - AvgPenLow.The error message is: "Name 'Plot' is not declared".Why is the compiler not recognizing the keyword "Plot"?If needed, how do I send you the code?
Topic: PCF for Optionable stocks
Posted: Monday, February 8, 2010 6:23:57 PM
Thanks, Bruce. Just what I was looking for. I'd thought I had to do it via a PCF!