Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
integrating addon buttons for entering trades
Collapse
X
-
integrating addon buttons for entering trades
My objective is to have buttons to set up my orders submitted through an atm or fixed stop or target profit. My question is when creating a button such as buy bid on chart trader, is is possible to create this? Is it an indicator, strategy or addonTags: None
-
Hello ballboy11,
Yes that is possible, it depends on what kind of orders you wanted to submit. If you want to submit strategy based orders you would use a strategy and the standard strategy order methods. If you wanted to build a custom tool that supports manual orders you could instead use an indicator and the addon framework.
There is a quick sample that shows adding some general buttons to the chart control that can be used for testing, this could be used from an indicator or strategy. https://ninjatrader.com/support/help...ub=usercontrol
You can also see the following post for more complex examples involving the chart trader or window: https://ninjatrader.com/support/foru...t=1#post499327
If you used an indicator you could see the following section, keep in mind the addon account code should not be used in a strategy for order placement/management. https://ninjatrader.com/support/help...ount_class.htm
One other note here is that if you use any NinjaScript properties like Close[0] in a button handler, you need to use a TriggerCustomEvent to surround that code. https://ninjatrader.com/support/help...=triggercustom
I look forward to being of further assistance.Code://this goes in the button event handler TriggerCustomEvent(o => { // your code in here }, null);
-
Hello ballboy11,
There is not a specific sample for PnL that I am aware of which puts it in the side bar. The chart trader is just a WPF control so to add anything else you would have to add other WPF controls. If you needed PNL that would likely be a TextBlock or one of the text based controls in WPF.
There is not a specific sample for PnL
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
637 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
366 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
107 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
569 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
571 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment