NinjaTrader Support Forum  

Go Back   NinjaTrader Support Forum > Suggestions and Feedback > Suggestions And Feedback

Suggestions And Feedback New feature suggestions and feedback.

Reply
 
Thread Tools Display Modes
Old 06-15-2010, 11:43 PM   #1
cunparis
Senior Member
 
Join Date: Feb 2008
Location: Paris
Posts: 713
Thanks: 11
Thanked 10 times in 7 posts
Default Please make charts dockable in a workspace

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.
cunparis is offline  
Reply With Quote
Old 06-16-2010, 01:52 AM   #2
NinjaTrader_Bertrand
NinjaTrader Customer Service
 
NinjaTrader_Bertrand's Avatar
 
Join Date: Sep 2008
Location: Germany
Posts: 22,569
Thanks: 261
Thanked 1,017 times in 998 posts
Default

cunparis, thanks for the feedback - this is already on our suggestion list for future consideration.
NinjaTrader_Bertrand is online now  
Reply With Quote
Old 07-06-2010, 10:43 AM   #3
tony900hwk
Member
 
Join Date: Dec 2007
Posts: 32
Thanks: 0
Thanked 0 times in 0 posts
Default

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.
tony900hwk is offline  
Reply With Quote
Old 08-30-2010, 10:50 PM   #4
Ringmeister
Junior Member
 
Join Date: Aug 2010
Posts: 4
Thanks: 0
Thanked 0 times in 0 posts
Default Windows within a workspace is an essential feature that is missing

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.
Ringmeister is offline  
Reply With Quote
Old 08-31-2010, 12:16 AM   #5
cunparis
Senior Member
 
Join Date: Feb 2008
Location: Paris
Posts: 713
Thanks: 11
Thanked 10 times in 7 posts
Default

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.
cunparis is offline  
Reply With Quote
Old 08-31-2010, 05:19 PM   #6
MarcoVest
Junior Member
 
Join Date: Aug 2010
Posts: 1
Thanks: 0
Thanked 0 times in 0 posts
Default Multiple Workspace Charting is a critical feature for serious traders.

Mimic Tradestation feature that allows toggling between multiple Workspaces with one mouse click, ie, split second toggling!
MarcoVest is offline  
Reply With Quote
Old 04-10-2013, 07:57 PM   #7
jparrie
Junior Member
 
Join Date: Apr 2013
Posts: 5
Thanks: 0
Thanked 1 time in 1 post
Default

Current treatment of windows is just plain awful.
jparrie is offline  
Reply With Quote
Old 04-10-2013, 08:05 PM   #8
sledge
Senior Member
 
Join Date: Aug 2010
Location: Washington, D.C.
Posts: 1,269
Thanks: 193
Thanked 332 times in 287 posts
Default

Quote:
Originally Posted by MarcoVest View Post
Mimic Tradestation feature that allows toggling between multiple Workspaces with one mouse click, ie, split second toggling!
Does this tool not help?

http://www.ninjatrader.com/support/f...space+switcher
sledge is online now  
Reply With Quote
Old 04-10-2013, 11:11 PM   #9
cunparis
Senior Member
 
Join Date: Feb 2008
Location: Paris
Posts: 713
Thanks: 11
Thanked 10 times in 7 posts
Default

Quote:
Originally Posted by sledge View Post
My current problem is not switching workspaces, it's having ninjatrader windows consume my entire desktop with no way to easily minimize all ninjatrader windows and restore them.

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!!!!
cunparis is offline  
Reply With Quote
Old 06-05-2013, 07:35 AM   #10
xTrader1
Senior Member
 
Join Date: Apr 2009
Posts: 215
Thanks: 0
Thanked 6 times in 4 posts
Default

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() ;
}


}
xTrader1 is offline  
Reply With Quote
Old 06-05-2013, 10:06 AM   #11
Alfred
Senior Member
 
Join Date: Nov 2004
Location: Northern California
Posts: 985
Thanks: 14
Thanked 39 times in 33 posts
Talking ....Idea...??

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.

.....
Alfred is offline  
Reply With Quote
Old 06-06-2013, 01:48 AM   #12
jparrie
Junior Member
 
Join Date: Apr 2013
Posts: 5
Thanks: 0
Thanked 1 time in 1 post
Default

Quote:
Originally Posted by MarcoVest View Post
Mimic Tradestation feature that allows toggling between multiple Workspaces with one mouse click, ie, split second toggling!
This.
jparrie is offline  
Reply With Quote
Old 06-07-2013, 06:57 AM   #13
laocoon
Senior Member
 
Join Date: Nov 2004
Location: Switzerland
Posts: 551
Thanks: 23
Thanked 12 times in 11 posts
Default

Quote:
Originally Posted by xTrader1 View Post
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() ;
}


}

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();
}
laocoon is offline  
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

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


All times are GMT -6. The time now is 10:33 AM.