1. An additional toolbar that integrates nicely and properly with the UI.
2. A panel to the right of the chart similar to the Chart Trader.
I've looked at a few examples from NT7, one such being ToolbarShortcutV1 from the NT forums. It seems quite simple to make a new toolbar using Windows Forms:
ts = new ToolStrip();
ts.Name = "ts";
ts.Dock = DockStyle.Left;
//.........etc etc etc
Thank you,
Sim22.



Comment