Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
TsSuperTrend
Collapse
X
-
There's no control for drawing objects' size. As an alternative, some people DrawText() which allows font size control.Ryan M.NinjaTrader Customer Service
Comment
-
rtj4201,
You can add code that will "offset" any desired object.... Many ways to do this, but the most straightforward might be to
- add integer field as input....Ex:
create a Variable
... private int _offset = 6;
- add code to make it modifiable Ex:
[Description(" ") ]
[Category("ChartControl") ]
[Gui.Design.DisplayName ("Offset") ]
public int Offset
{
get {return offset}
set {offset = Math.Min(15,Math.Max(value,1));}
}
- modify the DrawObject command to use (_offset * TickSize)
instead of a fixed number (such as 6).
This will let you change the amount of space between the candlestick and the object.
NOTE: double check the spacing & spelling before you try to copy paste this code. I keyed it fast, may have errors.Last edited by photog53; 06-08-2011, 08:51 PM.
Comment
-
Originally posted by rtj4201 View PostCan someone add a vertical offset capability for the arrows and cability of selection of the arrow size without having to go thru the code.
Ninja does not offer the ability to alter object size...but you can change which object you put on the chart.
For example...if the "arrow" is too large, then perhaps a small triangle would work better. (Ex: DrawTriangleUp or DrawTriangleDown instead of DrawArrowUp )
The code syntax is the same for both objects, only the selected object will be different.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
164 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
318 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
246 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
350 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
179 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment