#region Properties
[Browsable(false)] // this line prevents the data series from being displayed in the indicator properties dialog, do not remove
[XmlIgnore()] // this line ensures that the indicator can be saved/recovered as part of a chart template, do not remove
[GridCategory("Trend Definition"), Description("")]
public double MAGap
{
get{return gap;}
set{gap = Math.Max(2, value);}
}
[GridCategory("Trend Definition"), Description("")]
public double Channel
{
get{return channel;}
set{channel = Math.Max(2, value);}
}
[GridCategory("Trend MAs"), Description("")]
public int SMAPeriod
{
get{return smaperiod;}
set{smaperiod = value;}
}
[GridCategory("Trend MAs"), Description("")]
public int EMAPeriod
{
get{return emaperiod;}
set{emaperiod = value;}
}
#endregion
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
I can only set 3 properties?
Collapse
X
-
I can only set 3 properties?
Hi. aparently i can only set 3 properties. code looks like this
strange thing about it is, that its not and "linking" or typing error. because its always the first one that isnt working. i can copy the first one to the bottom of the thing and it works, tho then the now first one doesnt work any more, tho it worked before. very strange.Code:Tags: None
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
29 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
17 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
9 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
15 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
18 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment