Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Line Style as input variable
Collapse
X
-
I have done that and still get the following error message. Any ideas???
"Cannot convert type 'System.Drawing.Drawing2D.DashStyle' to type 'LineStyle'. "
My code is like this...
//in variables region
private LineStyle trendLineStyle;
//in Initialize( ) method
switch (trendLineStyle)
{
case LineStyle.Dash:
{
trendLineStyle=DashStyle.Solid ;
break;
}
}
//in Properties region
[Category("Parameters")]
[Gui.Design.DisplayName ("\t\t\Trend Line Style")]
public LineStyle TrendLineStyle
{
get { return trendLineStyle; }
set { trendLineStyle = value; }
}
//just before Ninja created code section
public enum LineStyle
{
Dash,
DashDot,
DashDotDot,
Dot,
Solid,
}
Comment
-
Hello Hawk Arps,
You can simply use the DashStyle C# enum to do it. Please change your code as below to do it.
You can then call the property in the code asCode://in variables region private [B]DashStyle[/B] trendLineStyle = DashStyle.Dot; [Category("Parameters")] [Gui.Design.DisplayName ("\t\t\Trend Line Style")] public [B]DashStyle[/B] TrendLineStyle { get { return trendLineStyle; } set { trendLineStyle = value; } }
Code:this.DrawLine("tag", false, 10, Close[0], 0, Close[0], Color.Blue, trendLineStyle, 2);JoydeepNinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by sjsj2732, 03-23-2026, 04:31 AM
|
0 responses
43 views
0 likes
|
Last Post
by sjsj2732
03-23-2026, 04:31 AM
|
||
|
Started by NullPointStrategies, 03-13-2026, 05:17 AM
|
0 responses
295 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
290 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
135 views
1 like
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
98 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|

Comment