Haven't yet done much ninjatrader programming, so I was looking to get started with this idea and wondering if this was possible. If not, I'd like to be able to create my own that's similar starting with a simple form that's attached to the chart with some buttons on it. Any ideas appreciated.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Customize Chart Trader
Collapse
X
-
Customize Chart Trader
Can I customize the Chart Trading indicator? I'd like to add a few buttons to the indicator that place some specific orders.
Haven't yet done much ninjatrader programming, so I was looking to get started with this idea and wondering if this was possible. If not, I'd like to be able to create my own that's similar starting with a simple form that's attached to the chart with some buttons on it. Any ideas appreciated.Tags: None
-
Hello Bth123, and thank you for your question.
While this is beyond the support we can provide directly, I am providing a post other forums users have found helpful, which will guide you through creating Windows forms .dll files and linking them into a NinjaScript project.
Please let us know if there are any other ways we can help.Jessica P.NinjaTrader Customer Service
-
Additionally, for ChartTrader specifically, the following code sample may help.
Code:for (int i = 0; i < ChartControl.Controls.Count; i++) { Print(ChartControl.Controls[i].Name); if (ChartControl.Controls[i].Name == "pnlChartTrader") { Control ct = ChartControl.Controls[i]; ComboBox a = null; for (int x = 0; x < ct.Controls["ctrChartTraderControl"].Controls.Count; x++) { a = (ComboBox)ct.Controls["ctrChartTraderControl"].Controls["cboAccount"]; } NinjaTrader.Cbi.Account d = a.SelectedItem as NinjaTrader.Cbi.Account; Print(d.Name); } }Jessica P.NinjaTrader Customer Service
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