NinjaTrader Support Forum  

Go Back   NinjaTrader Support Forum > NinjaScript Development Support > Indicator Development
Register FAQ Members List Mark Forums Read

Indicator Development Support for the development of custom indicators using NinjaScript.

Reply
 
Thread Tools Display Modes
Old 05-12-2008, 06:04 PM   #1
kuroro13
Senior Member
 
Join Date: May 2008
Posts: 111
Default Value Charts by David Stendhal

Hi,

I would like to code the Value Chart indicator for NT unfortunately I am not skilled enough to do that task. I just began to learn C# programming couple weeks ago and I'm still a newbie.
Here is a link with an interview of D. Stendhal where he explain this indicator with a few graphs.

http://www.chartresearch.com/TSInterview.htm

And here is the link for the Javascript for this indicator :

http://hk-lisse.over-blog.com/

The explanations on top of the code are in french but I can translate everything (i'm french)

I would be very grateful if someone would explain me how to implement this indicator step by step
kuroro13 is offline   Reply With Quote
Old 05-12-2008, 06:48 PM   #2
thrunner
Member
 
Join Date: May 2007
Posts: 70
Default

Value Charts is a detrended price indicator and in that sense it is an oscillator that tries to show overbought and oversold conditions with detrended price extremes.

There is probably no need to translate the French version you quoted in Java because the original Helweg & Stendahl code is available on their website and reproduced in TS EL (Tradestation Easylanguage) here: http://www.traderslaboratory.com/for...html#post29610 EL is Pascal like and easy to read.

Many probably have independently coded Value Charts in NT C#. One example is published here: http://www.traderslaboratory.com/for...html#post35203

The problem with the NT Value Charts remained in that NT6.5 and prior versions do not support plotting synthetic bars of OHLC (Open, High, Low, Close) natively. Therefore, to reproduce Value Charts properly in NT requires overriding the native plotting method. However, there is no NT technical support when you try to override the native NT methods. Gumphrie in this forum may have stated that he has coded such a version with properly plotted OHLC synthetic bars.

You can of course just plot the High and the Low and approximate the original Value Charts as was done in the second URL above.

Original Value Charts by Helweg and Stendahl:


Last edited by thrunner; 05-12-2008 at 06:54 PM.
thrunner is offline   Reply With Quote
Old 05-13-2008, 02:10 AM   #3
NinjaTrader_Josh
NinjaTrader Customer Service
 
NinjaTrader_Josh's Avatar
 
Join Date: May 2007
Location: Denver, CO
Posts: 13,390
Default

As a last resort you can also try contacting one of the NinjaScript Consultants here: http://www.ninjatrader.com/webnew/pa...injaScript.htm
__________________
Josh, NinjaTrader Customer Service
NinjaTrader is a FREE application for advanced charting, market analytics, system development and trade simulation.

View schedule of upcoming online product training events.
NinjaTrader_Josh is offline   Reply With Quote
Old 05-13-2008, 07:28 AM   #4
kuroro13
Senior Member
 
Join Date: May 2008
Posts: 111
Default

"overriding the native plotting method" ?
sounds pretty difficult especially for me.
Does anyone know how to do that thing ?
kuroro13 is offline   Reply With Quote
Old 05-13-2008, 07:42 AM   #5
NinjaTrader_Dierk
Administrator
 
NinjaTrader_Dierk's Avatar
 
Join Date: Mar 2005
Location: Bamberg, Germany
Posts: 9,265
Default

Please see CustomPlotSample indicator. Note, you need to be C# proficient in order to code at that detailed level.
__________________
Dierk, NinjaTrader Customer Service
NinjaTrader is a FREE application for advanced charting, market analytics, system development and trade simulation.

View schedule of upcoming online product training events.

NinjaTrader_Dierk is offline   Reply With Quote
Old 05-13-2008, 08:02 AM   #6
kuroro13
Senior Member
 
Join Date: May 2008
Posts: 111
Default

Do you have a link ?
Because I cannot find anything on the help guide
kuroro13 is offline   Reply With Quote
Old 05-13-2008, 08:05 AM   #7
NinjaTrader_Dierk
Administrator
 
NinjaTrader_Dierk's Avatar
 
Join Date: Mar 2005
Location: Bamberg, Germany
Posts: 9,265
Default

CustomPlotSample is an indicator whose code you could pull up in the NinjaScript editor. There is nothing in the help guide since coding at that level is beyond the scope what we provide support for.
__________________
Dierk, NinjaTrader Customer Service
NinjaTrader is a FREE application for advanced charting, market analytics, system development and trade simulation.

View schedule of upcoming online product training events.

NinjaTrader_Dierk is offline   Reply With Quote
Old 05-15-2008, 12:34 AM   #8
cls71
Senior Member
 
Join Date: Jan 2008
Posts: 184
Default

you can download the ValueChart indicator here :
http://www.ninjatrader-support.com/v...id=113&catid=1
cls71 is offline   Reply With Quote
Old 05-15-2008, 05:38 AM   #9
kuroro13
Senior Member
 
Join Date: May 2008
Posts: 111
Default

thank you!!!
kuroro13 is offline   Reply With Quote
Old 05-21-2008, 09:49 PM   #10
mrpowerballad
Junior Member
 
Join Date: Mar 2008
Posts: 27
Default

cls71, thanks a lot for posting this indicator -- i've been testing it out and looks great so far.
mrpowerballad is offline   Reply With Quote
Old 05-22-2008, 02:00 AM   #11
cls71
Senior Member
 
Join Date: Jan 2008
Posts: 184
Default

ok. you're welcome.
cls71 is offline   Reply With Quote
Old 05-22-2008, 11:10 AM   #12
styr_trader
Junior Member
 
Join Date: Feb 2008
Posts: 21
Default

very nice looking indicator, but not sure if it could give more information then say Bollinger Bands or Keltner channels ... may be easier to read, but then you are distracted from price chart etc.
styr_trader is offline   Reply With Quote
Old 09-23-2008, 02:55 PM   #13
pivot44
Senior Member
 
Join Date: Feb 2006
Location: , ,
Posts: 136
Default

Regarding the Value Landmark indicator -- Price Marker does not appear, even when set to true. Also, could you change the display plot to allow us to choose a simple histogram line? The rectangles overlap, and are hard to discern from one bar to another. Thanks.
pivot44 is offline   Reply With Quote
Old 12-01-2008, 02:29 PM   #14
roonius
Certified NinjaScript Consultant
 
Join Date: Oct 2008
Location: Chicago, IL
Posts: 495
Send a message via Skype™ to roonius
Default

I've been looking for ValueCharts for a small project...
The one posted by cls71 looks ok, but it calculates a little different.
So I translated from TradeStation.
If anyone finds it usefull, enjoy...

Edit: Removed link due to updates ...
__________________
www.TradingStudies.com

Impossible is usually untried...

Last edited by roonius; 01-08-2009 at 08:44 PM.
roonius is offline   Reply With Quote
Old 12-02-2008, 12:54 AM   #15
Elliott Wave
Senior Member
 
Join Date: Mar 2008
Posts: 731
Default

Looks good.

Here's some more info I found on this:
http://www.chartresearch.com/ValueCharts.htm

http://www.chartresearch.com/AtE-IR20.htm

Last edited by Elliott Wave; 12-02-2008 at 01:07 AM.
Elliott Wave 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
Second charts move similar to tick charts DrDeath Charting 2 04-03-2008 10:20 AM
Second charts = Tick charts ? Currywurst Charting 5 02-27-2008 12:58 PM


All times are GMT -6. The time now is 01:15 AM.