Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Target Text
Collapse
X
-
Target Text
I am wondering how to add text to my entry points. I have the target code but would like to say under the entry that the target is @ XXXX. Is this possible? Would think it would be pretty simple but I am just transitioning to ninja script. ThanksTags: None
-
Hello tommyj, thanks for writing in.
That can be done by calling Draw.Text from OnExecutionUpdate, or Draw.Text right after you perform the entry.
The default execution markers also do this automatically. These can be set up through the Data Series menu.
Please let me know if you have any questions on this material.
-
Hello tommyj, thanks for your reply.
The default execution plots will mark the entry price of each entry separately. If you would like to make your own logic that plots entries, you would need to detect the entry from OnExecutionUpdate. The most straight forward way of doing this would be to give your entries unique signal names e.g. EnterLong("MyEntry1");, EnterLong("MyEntry2") then check for the name in OnExecutionUpdate:
if(execution.Name == "MyEntry1")
{
//Draw execution
}
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Yesterday, 05:17 AM
|
0 responses
54 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
130 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
72 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
44 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
49 views
0 likes
|
Last Post
|

Comment