![]() |
|
|||||||
| Suggestions And Feedback New feature suggestions and feedback. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Senior Member
Join Date: Feb 2008
Location: Paris
Posts: 713
Thanks: 11
Thanked 10 times in 7 posts
|
Every other charting package has the chart windows inside a workspace. I follow 6 markets, 2 charts per market, that's 12 windows + the main window = 13 windows on my desktop just for ninjatrader. It takes up my entire taskbar.
TS = 1 window Market Delta = 1 window Ninja = 13 windows Please do something about this. |
|
|
|
|
|
#2 |
|
NinjaTrader Customer Service
Join Date: Sep 2008
Location: Germany
Posts: 22,569
Thanks: 261
Thanked 1,017 times in 998 posts
|
cunparis, thanks for the feedback - this is already on our suggestion list for future consideration.
Bertrand
NinjaTrader Customer Service |
|
|
|
|
|
#3 |
|
Member
Join Date: Dec 2007
Posts: 32
Thanks: 0
Thanked 0 times in 0 posts
|
I also have been having the same problem. I was searching the internet and I came across
http://virtuawin.sourceforge.net/ I haven't tried it yet, but it certainly looks interesting. Maybe you can put NT on its own desktop with this. |
|
|
|
|
|
#4 |
|
Junior Member
Join Date: Aug 2010
Posts: 4
Thanks: 0
Thanked 0 times in 0 posts
|
The lack of this essential feature is the only reason why I have not yet purchased NinjaTrader. I was hoping that Version 7 would finally have all of the NinjaTrader windows within a workspace, but unfortunately this feature does not appear to be a high priority.
|
|
|
|
|
|
#5 |
|
Senior Member
Join Date: Feb 2008
Location: Paris
Posts: 713
Thanks: 11
Thanked 10 times in 7 posts
|
Ninjatrader is the only charting application I'm aware of that forces the windows to float all over the desktop.
I gave up on ninja charting, I'm using Market Delta & Tradestation. |
|
|
|
|
|
#6 |
|
Junior Member
Join Date: Aug 2010
Posts: 1
Thanks: 0
Thanked 0 times in 0 posts
|
Mimic Tradestation feature that allows toggling between multiple Workspaces with one mouse click, ie, split second toggling!
|
|
|
|
|
|
#7 |
|
Junior Member
Join Date: Apr 2013
Posts: 5
Thanks: 0
Thanked 1 time in 1 post
|
Current treatment of windows is just plain awful.
|
|
|
|
|
|
#8 | |
|
Senior Member
Join Date: Aug 2010
Location: Washington, D.C.
Posts: 1,269
Thanks: 193
Thanked 332 times in 287 posts
|
Quote:
http://www.ninjatrader.com/support/f...space+switcher |
|
|
|
|
|
|
#9 | |
|
Senior Member
Join Date: Feb 2008
Location: Paris
Posts: 713
Thanks: 11
Thanked 10 times in 7 posts
|
Quote:
I am trying Dexpot and that helps, I put all ninja windows on a separate desktop. but dexpot is not without its own bugs & flaws too. Every other charting application has the windows live inside the application, so you minimize the application and you minimimize everything wtih it. Market Delta, Trader Station, Multicharts, etc. Why does Ninja insist on polluting my desktop? I have 15 ninjatrader windows open all the time!!!! |
|
|
|
|
|
|
#10 |
|
Senior Member
Join Date: Apr 2009
Posts: 215
Thanks: 0
Thanked 6 times in 4 posts
|
Hi , I have the same problem, so I began to do my programming homework. The following piece of code hides a chart when not needed, and shows when needed. I'm planning to hide and show a group of charts belonging to the same instrument, I'll post my code when it'll be ready.
I'm not going to give up Ninja !!! ![]() The code, just for the beginning: protected override void OnBarUpdate() { // Use this method for calculating your indicator values. Assign a value to each // plot below by replacing 'Close[0]' with your own formula. // Plot0.Set(Close[0]); if (ShouldBeActive) { ChartControl.ParentForm.Show() ; } if (ShouldBeHidden) { ChartControl.ParentForm.Hide() ; } } |
|
|
|
|
|
#11 |
|
Senior Member
Join Date: Nov 2004
Location: Northern California
Posts: 985
Thanks: 14
Thanked 39 times in 33 posts
|
Improvements could be made in this area...but as a possible workaround for now....create a workspace with just the Control Center (minimized maybe)...then use the Global > Next Workspace hot key (Alt + Space works easily here) ...to switch to a minimum NT windows workspace.
.....
|
|
|
|
|
|
#12 |
|
Junior Member
Join Date: Apr 2013
Posts: 5
Thanks: 0
Thanked 1 time in 1 post
|
|
|
|
|
|
|
#13 | |
|
Senior Member
Join Date: Nov 2004
Location: Switzerland
Posts: 551
Thanks: 23
Thanked 12 times in 11 posts
|
Quote:
Thanks for posting your code snippet xTrader1, very interesting indeed. I've been trying for quite some time to do exactly what you're doing, I even started a thread about it but nobody came up with a solution so far. I wasn't even aware of the ChartControl.ParentForm.Show() command and you're certainly up to a very promising start with your code. Here's my question to you (and to the wider community): When enabling the extremely basic strategy posted below, the chart appears on the screen when the condition is met and disappears when it is not, exactly as expected. if(Close[0]>Open[0]) { ChartControl.ParentForm.Show(); } if(Close[0]<=Open[0]) { ChartControl.ParentForm.Hide(); } But, when I integrate the ChartControl.ParentForm.Show() command into my automated strategy, it doesn't work anymore. Any idea why that might be? Thanks a lot. Here's the code snippet that draws an arrow under the candle that generated the signal, plays an alert but fails to bring the chart on the screen. (My entry criteria clearly aren't the problem as the arrow is drawn and the alert is played). if(MyCriteriaHere) { DrawArrowUp("GreenArrowLong" + CurrentBar, false, 0, Low[0]- 4*(TickSize), Color.Lime); PlaySound("Alert1.wav"); ChartControl.ParentForm.Show(); } |
|
|
|
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Feature Request: Dockable Charts in Workspaces | michellepace | Suggestions And Feedback | 4 | 05-09-2009 03:02 PM |
| Saving Workspace to make Indicator changes permanent | Jim W. | Suggestions And Feedback | 1 | 02-18-2009 12:10 PM |
| How does Ninja make 3 day charts / EMA's | T2020 | Charting | 7 | 01-28-2009 09:45 PM |
| How to make NT automatically shift charts? | clearpicks | Charting | 3 | 08-26-2008 02:46 PM |
| Handling contract rollovers - to make continous charts | RK_trader | Charting | 5 | 09-07-2007 06:59 AM |