Welcome to the Traders Laboratory Forums.
Trading Indicators Post your custom trading indicators. If you download, remember to click INSTALL.

Reply
Value Chart Indicator Details »»
Value Chart Indicator
Platform: , by Soultrader (Super Moderator) Soultrader is offline
Developer Last Online: Jun 2011 Show Printable Version Email this Page

Platform: Unknown Rating:
Released: 02-04-2008 Last Update: Never Installs: 0
 
No support by the author.

Here is an indicator created by Blu-Ray. The original thread is located here.

Here is an video sample posted by wsam29 from the TTM site here.

Value Chart Video

Since I no longer use TS, I will not be able to post any screenshots.

Many thanks to Blu-Ray for developing this free indicator.

Download Now

File Type: eld VALUECHART.ELD (6.9 KB, 469 views)

Show Your Support

  • If you like to thanks you by the author -> Click Thanks to the Author
  • This modification may not be copied, reproduced or published elsewhere without the author's permission.
The Following 3 Users Say Thank You to Soultrader For This Useful Post:
halfB (05-13-2009), maxima (10-17-2009), neutral (09-26-2008)

Comments
Old 02-04-2008, 05:00 AM   #2

Blu-Ray's Avatar

Join Date: Nov 2006
Location: England
Posts: 508
Ignore this user

Thanks: 164
Thanked 292 Times in 105 Posts

Re: Value Chart Indicator

Here's a screenshot of the indicator



Hope this helps

Blu-Ray
Attached Thumbnails
Value Chart Indicator-valuechart.png  
__________________

“ Search is the ultimate expression of the power of the individual, using a computer, looking at the world, and finding exactly what they want ” – Eric Schmidt, Google
Blu-Ray is offline  
Reply With Quote
The Following 4 Users Say Thank You to Blu-Ray For This Useful Post:
khan (12-28-2009), swansjr (05-06-2009), Tasuki (11-13-2008), tblack (12-13-2008)
Old 02-04-2008, 05:10 AM   #3

Soultrader's Avatar

Status: Super Moderator
Join Date: Aug 2006
Location: Tokyo
Posts: 3,623
Ignore this user

Thanks: 545
Thanked 1,371 Times in 492 Posts
Blog Entries: 4

Re: Value Chart Indicator

Thanks Blu-Ray.
__________________

Soultrader is offline  
Reply With Quote
Old 02-04-2008, 11:23 AM   #4

Join Date: Feb 2007
Location: US
Posts: 314
Ignore this user

Thanks: 86
Thanked 206 Times in 89 Posts

Re: Value Chart Indicator

Those who are interested in this indicator should go to the original authors Helweg and Stendahl, in their book:
Dynamic Trading Indicators - Winning with Value Charts and Price Action Profile by Stendahl, David & Helweg, Mark

and the many existing threads and code samples on the TS forum. Helweg was generously enough to post it as open code in 2001 and the copyright should be acknowledged.

If you noticed in their book and code, there are two ways to trade this, one is the 21 period High or Low and the other is an absolute +8 or -8 play.

Recently, TTM revived this fairly old indicator by incorporating it with Clayburg's DDF (Day Directional Filter) and then calling it the TTM ddf vc indicator, which tries to find the Day's trend by usually the trend of the first hour and then trade the VC (Value Chart) in the direction of the DDF trend. The attached picture shows such a chart with all open source code.

Code:
[LegacyColorValue = true]; 

{*******************************************************************
Description	:	This Indicator plots Value Chart prices. 
Provided By	: Mark W. Helweg (c) Copyright 2001
********************************************************************}
Attached Thumbnails
Value Chart Indicator-es-ddf-vc-2008-02-03_171800.png  
thrunner is offline  
Reply With Quote
Old 08-19-2008, 02:49 PM   #5

daedalus's Avatar

Join Date: Jul 2007
Location: Omaha, NE
Posts: 627
Ignore this user

Thanks: 431
Thanked 551 Times in 228 Posts

Re: Value Chart Indicator

Anyone know if it would be possible to trigger an Alert in TS when the VC hits a certain level like +6/-6?

I tried mimicking it with horizontal lines and breakouts intra/interbar with no luck. At least the alert never fired.

Any ideas? It would simplify my life 100x's.
daedalus is offline  
Reply With Quote
Old 09-10-2008, 11:53 AM   #6

Join Date: Jul 2008
Location: Buffalo
Posts: 7
Ignore this user

Thanks: 0
Thanked 3 Times in 2 Posts

Re: Value Chart Indicator

I just wanted to add my 2 cents to this thread. I did download it and did some tweaking and got it working really well with my approach to trading. In the picture that I am posting when the value has a positive close above the zeroline you go long and if you get a negative close of value below the zeroline you go short. This method helps you hold onto winning trades longer without exposing you to large potential stop losses and keeping your winners running.

VinceB
Attached Thumbnails
Value Chart Indicator-valuechart.jpg  
godman is offline  
Reply With Quote
The Following 2 Users Say Thank You to godman For This Useful Post:
opmtraders (12-26-2008), zdo (09-10-2008)
Old 09-10-2008, 01:34 PM   #7
zdo

Join Date: Nov 2007
Location: boonies
Posts: 1,349
Ignore this user

Thanks: 317
Thanked 355 Times in 256 Posts
Blog Entries: 104

Re: Value Chart Indicator

This detrender tracks pretty well within fixed bounds but just for snicks I put slightly dynamic / variable ones on it… those who use the extremes might find it useful…
btw daedalus the skeleton for alerts is started in the fixed band case part of the code. No warranty expressed or implied but it should help get you going… hth


Code:

[LegacyColorValue = true]; 

{Value Chart Indicators.  And yes thanks and credits to David Stendahl, et al 
RFA is Relative Float Axis
VU is Volatility Unit 
}
Input: 
FixedBand(7.5),	
Length(7),
sdLength(21   {89}  {43}),
StDv(1.61), {why?}
bandType(2) //bType 0 = none 1 fixed 2 bb-like  2 Keltner-like (not implemented)
; // End Input

Var: 
RFA(0),
VU(0),
RfaH(0),
RfaL(0),
medRfa(0),
Avg(0),
SDev(0),
UpperBand(0),
LowerBand(0)
; // End Var

RFA = Average(MedianPrice, Length);
VU = (Average(Range, Length))* 0.2;

if VU = 0 then
 VU = 1;

RfaH = (High-RFA)/VU;
RfaL = (Low-RFA)/VU; 

Plot1 (RfaH, "VCHigh");
Plot2 (RfaL, "VCLow");

if bandType = 0 then begin // select case
 noplot(3);
 noplot(4);

end; // if bandType = 0

if bandType = 1 then begin
 Plot3 (FixedBand, "");
 Plot4 (-FixedBand, "");

 if RfaH > Plot3[0] and RfaH[1] <= Plot3[1] then
  Alert( "UpperValueBoundTapped") 
 else if RfaL < Plot4[0] and RfaL[1] >= Plot4[1]  then
  Alert( "LowerValueBoundTapped") ;	

end; // if bandType = 1

if bandType = 2 then begin 
 Avg = XAverage(RfaH,sdLength);
 SDev = StdDev(RfaH, sdLength);
 UpperBand = Avg + StDv * SDev;

 Plot3 (UpperBand, "");

 Avg = XAverage(RfaL,sdLength);
 SDev = StdDev(RfaL, sdLength);
 LowerBand = Avg - StDv * SDev;

 Plot4 (LowerBand, "");

{
 if RfaH > Plot3[0] and RfaH[1] <= Plot3[1] then
  Alert( "UpperValueBoundTapped") 
 else if RfaL < Plot4[0] and RfaL[1] >= Plot4[1]  then
  Alert( "LowerValueBoundTapped") ;	
}

end; // if bandType = 2

//keltner-like
{if bandType = 3 then begin
//medRfa = (RfaH - RfaL) / 2;
	Shift = Factor * AvgTrueRange( atrLength ) ;
 UpperBand = Avg + Shift 
 LowerBand = Avg - Shift ...
}
zdo is offline  
Reply With Quote
The Following 2 Users Say Thank You to zdo For This Useful Post:
daedalus (09-10-2008)
Old 09-26-2008, 08:07 AM   #8

Join Date: Jan 2008
Location: Tampa
Posts: 31
Ignore this user

Thanks: 0
Thanked 4 Times in 4 Posts

Re: Value Chart Indicator

Has anyone put one together for Sierra Charts? I asked at their board, but admin seemed to think that it would be difficult to do. More than I thought, but then, I don't code. Thanks in advance for any help!
jackj is offline  
Reply With Quote

Reply

Thread Tools
Help Others By Rating This Thread
Help Others By Rating This Thread:


Similar Threads
Thread Thread Starter Forum Replies Last Post
Up/Down Volume Indicator Blu-Ray Trading Indicators 6 12-12-2010 05:10 PM
BB Squeeze indicator januson Technical Analysis 28 10-25-2009 02:11 AM
Bid-Ask Tape Indicator Soultrader Trading Indicators 76 02-13-2008 04:16 PM
Which indicator is the best one to use? Michael Stock Trading Laboratory 5 01-26-2008 11:30 AM
Ant: Is there any way to improve this indicator? nasdaq5048 Market Profile 3 12-22-2006 11:45 AM

All times are GMT -4. The time now is 08:34 AM.
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
CS to VB integration by DeskLancer
©2006-2011 Traders Laboratory, All Rights Reserved.