Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Serialize error
Collapse
X
-
Serialize error
I get the error 'Indicator could not be serialized' when I try to save to a template, a chart which contains one specific custom indicator. What does this mean? The indicator works fine, but seems like any chart containing it cannot be saved as a template. Where do I look for clues as to what might be the issue?Tags: None
-
There are no properties defined in this indicator (maybe that itself might be the issue?). What other parts of your code could issue that error? Maybe that can help give me some direction as to what to focus on.
Originally posted by Josh View PostI would look to the indicator itself. I would look at the area where properties are defined as a start.
Comment
-
This error will not occur if you code along the lines of all other NT standard indicators only using documented NinjaScript properties and methods.
Unfortunately we don't know which sections of your custom code broke the logic. I suggest giving it a fresh start by a wizard generated template and adding your custom code step to step to see where it finally breaks.DierkNinjaTrader Customer Service
Comment
-
You have probably fixed the problem by now, but for the record I had the same problem and found this.
I had defined a variable in the Ind1 code as an int and used it in a reference to another indicator, Ind2. Everything compiled just fine but it would not serialize when saving as a template. I found that the position in the reference to Ind2 where the int was used actually required a double by Ind2. I changed the variable in Ind1 from an int to a double and the problem was resolved.
Comment
-
I am having the same type of problem and have isolated it to the following statement in my Variables region:
public DataSeries dsCalcVolume;
using
private DataSeries dsCalcVolume;
works fine; however I would like another indicator to have access to this DataSeries...
?
Thanks!
=======================
Resolved...
Moved to Properties Region...
Last edited by SteveB; 06-23-2008, 06:47 PM.
Comment
Latest Posts
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by temtam, Today, 07:56 PM
|
0 responses
2 views
0 likes
|
Last Post
![]()
by temtam
Today, 07:56 PM
|
||
Started by woodruaj, Today, 06:15 PM
|
0 responses
4 views
0 likes
|
Last Post
![]()
by woodruaj
Today, 06:15 PM
|
||
Started by CarpetHooligan, Today, 03:55 PM
|
0 responses
3 views
0 likes
|
Last Post
![]() |
||
Started by forrestang, Today, 02:36 PM
|
2 responses
13 views
0 likes
|
Last Post
![]()
by forrestang
Today, 03:31 PM
|
||
Started by NoLoEffeCo, Today, 01:44 PM
|
1 response
12 views
0 likes
|
Last Post
|
Comment