| eroberts911 |
|
Gold User, Member, TeleChart
|
| Registered User |
|
|
|
|
| Unsure |
|
| Tuesday, October 14, 2008 |
| Sunday, June 24, 2012 5:11:12 PM |
23 [0.01% of all post / 0.00 posts per day] |
|
|
Thanks Bruce. Great idea. This will serve me well.
|
|
How can I import a Stockfinder 4 watchlist into Stockfinder 5?
|
|
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?
|
|
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
|
|
Sorry, Guys, should have posted above as new topic. I did that, but created a duplication in your post list
|
|
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?
|
|
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?
|
|
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)
|
|
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?
|
|
Thanks, Bruce. Just what I was looking for. I'd thought I had to do it via a PCF!
|
|