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 01-27-2010, 12:59 PM   #31
klassej
Junior Member
 
Join Date: Mar 2009
Posts: 12
Default

Quote:
Originally Posted by JS999 View Post
Thanks a lot! This seems to work fairly nicely. I was just wondering though - is there any way to construct this as an additional/new chart type so you we could still use the original candlestick chart type as well if we wanted to? Right now it replaces the original code, so if we want to use this we'll have to forego original candles on any of our charts... much appreciated!
Sorry, but I'm not sure how one accomplishes that. Anyone?
klassej is offline  
Reply With Quote
Old 01-27-2010, 01:14 PM   #32
JS999
Senior Member
 
Join Date: Mar 2009
Posts: 386
Default

Quote:
Originally Posted by klassej View Post
Sorry, but I'm not sure how one accomplishes that. Anyone?
I don't know how you create a new type, however I did manage to get it to override a chart type that I hardly ever use (the Box type). All you have to do is change this line:

public CandleVolStyle()
: base(ChartStyleType.CandleStick)

to this

public CandleVolStyle()
: base(ChartStyleType.Box)


It will then override the Box type instead of the standard CandleStick type, which will let you switch between normal and equivolume candles.
JS999 is offline  
Reply With Quote
Old 02-03-2010, 05:44 PM   #33
laredo
Senior Member
 
Join Date: May 2008
Posts: 156
Default equivolume bars

Can someone tell me if the equivolume bars download exists,where it is located,and also if NT 7 has been released.

Thanks in advance.
laredo is offline  
Reply With Quote
Old 02-04-2010, 01:22 AM   #34
klassej
Junior Member
 
Join Date: Mar 2009
Posts: 12
Default

Laredo, I sent you a PM with some more detailed instructions. Here it is again though:
1. Put the file here: Documents\NinjaTrader 7\bin\Custom\Type
2. Open any existing indicator in the NinjaScript Editor (Tools->Edit NinjaScript->...)
3. Click the compile button
4. Restart ninja 7.
Now there should be a new entry in the chart type dropdown called CandleVol.
Set the bar width to 9 or 10 or else it will be too narrow.

Quote:
Originally Posted by laredo View Post
Can someone tell me if the equivolume bars download exists,where it is located,and also if NT 7 has been released.

Thanks in advance.
klassej is offline  
Reply With Quote
Old 02-06-2010, 10:28 AM   #35
laredo
Senior Member
 
Join Date: May 2008
Posts: 156
Default candlevolume

I need to do something to ninjatrader control center to get it to locate this script in 'my documents'. I have the program in 'My documents' on the computer But when I go to Utilites etc...it aint there?

whats the deal?
laredo is offline  
Reply With Quote
Old 02-06-2010, 10:44 AM   #36
laredo
Senior Member
 
Join Date: May 2008
Posts: 156
Default ninjatrader "import ninjascript" doesnt locate CandleVol.cs

1. I download attachment 9085 on this page to my computer
2.It appears in My Documents
3.I open up nintrader and select Utilites
4.I click on "import ninjascript" and look for the attachment
5.It does appear

?
laredo is offline  
Reply With Quote
Old 02-06-2010, 10:45 AM   #37
laredo
Senior Member
 
Join Date: May 2008
Posts: 156
Default Problem in importing Ninjascript CandleVol.cs

It Doesnt appear rather.Cant use it on charts from NT.
laredo is offline  
Reply With Quote
Old 02-16-2010, 10:11 AM   #38
laredo
Senior Member
 
Join Date: May 2008
Posts: 156
Default install candle volume

Hello,

if anyone has been successful in installing the candlevolumebars script and has a moment,I am not able to sort through it.Its doesnt install in any way similar to other downloads I am using and I would sorely like to be usingit.
Thanks
laredo is offline  
Reply With Quote
Old 03-14-2010, 10:40 AM   #39
Tarkus11
Member
 
Join Date: Jan 2010
Posts: 44
Default

I installed this for a friend and it looks good - except for the fact that a wide volume bar can obscure all or part of the width of a preceding bar, making the prior bar's actual width harder to discern. Increasing the space between bars doesn't help make it clearer.
Tarkus11 is offline  
Reply With Quote
Old 03-14-2010, 12:22 PM   #40
laredo
Senior Member
 
Join Date: May 2008
Posts: 156
Default

which download did you use?

ty
laredo is offline  
Reply With Quote
Old 03-15-2010, 06:18 AM   #41
Tarkus11
Member
 
Join Date: Jan 2010
Posts: 44
Default

Quote:
Originally Posted by laredo View Post
which download did you use?

ty
The .cs file in post 27
Tarkus11 is offline  
Reply With Quote
Old 07-02-2010, 08:32 AM   #42
jackh
Junior Member
 
Join Date: Apr 2008
Posts: 20
Default Beta 18 Changes

I was able to use this indicator on previous Beta versions but can not use on Beta 18. When I go to compile I get error message saying that there are programimg errors. Did something change in Beta 18?
jackh is offline  
Reply With Quote
Old 07-02-2010, 09:11 AM   #43
jackh
Junior Member
 
Join Date: Apr 2008
Posts: 20
Default Beta 18

I tried the unmodified version (without change to box style default) and this worked.
jackh is offline  
Reply With Quote
Old 08-18-2010, 08:32 PM   #44
jjben
Junior Member
 
Join Date: Sep 2008
Posts: 5
Default

Quote:
Originally Posted by JS999 View Post
I don't know how you create a new type, however I did manage to get it to override a chart type that I hardly ever use (the Box type). All you have to do is change this line:

public CandleVolStyle()
: base(ChartStyleType.CandleStick)

to this

public CandleVolStyle()
: base(ChartStyleType.Box)


It will then override the Box type instead of the standard CandleStick type, which will let you switch between normal and equivolume candles.
Try changing ChartStyleType.CandleStick to one of the Custom types. ie ChartStyleType.Custom0
ChartStyleType.Custom1,ChartStyleType.Custom2 etc. There are 10 customs 0-9.
It worked for me. Nice to have candlevolume on NT. Thanks all for the code.
jjben is offline  
Reply With Quote
Old 08-19-2010, 12:02 PM   #45
JS999
Senior Member
 
Join Date: Mar 2009
Posts: 386
Default

Quote:
Originally Posted by jjben View Post
Try changing ChartStyleType.CandleStick to one of the Custom types. ie ChartStyleType.Custom0
ChartStyleType.Custom1,ChartStyleType.Custom2 etc. There are 10 customs 0-9.
It worked for me. Nice to have candlevolume on NT. Thanks all for the code.
Thanks for the tip... works nicely.
JS999 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
Using BarColor, candles lose outline color JangoFolly Indicator Development 9 02-15-2008 08:59 AM


All times are GMT -6. The time now is 01:37 PM.