Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Draw.HorizontalLine() question
Collapse
X
-
Draw.HorizontalLine() question
Hi I am new to programming, I was looking at the Draw.HorizontalLine() method. I wanted to create the object with specified width/brush as well as setting it a global drawing object. I don't see it fits one of the available syntax and if I try to set like width or global like object.isGlobal = True separately after the ojbect is created, ninjatrader compiler does not like that. What do I do?
Tags: None
-
Hello flybuzz,
Unfortunately, the isGlobal has to be set at the time of calling the draw method.
But you can change the width and brush after that.
Code:HorizontalLine myHLine = Draw.HorizontalLine(this, "myObject", Close[0], true, string.Empty); myHLine.Stroke.Brush = Brushes.Red; myHLine.Stroke.Width = 5;
Chelsea B.NinjaTrader Customer Service
- Likes 1
-
Hello kenz987,
The default using statements will have the 'NinjaTrader.NinjaScript.DrawingTools' statement by default.
Have you created the script using the NinjaScript Editor?
Have you modified the default using statements?
To upload an image with your post, click Upload Attachments, then select the file.Chelsea B.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
28 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
20 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
183 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
337 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
261 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|

Comment