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 11-28-2008, 07:17 PM   #10

Join Date: Sep 2008
Location: Hà Nội
Posts: 4
Ignore this user

Thanks: 1
Thanked 4 Times in 1 Post

Re: Value Chart Indicator

I user amibroker. Could any one convert it to amibroker indicator?
Strade is offline  
Reply With Quote
Old 02-03-2009, 10:00 AM   #11

Join Date: Jan 2009
Location: New York
Posts: 5
Ignore this user

Thanks: 0
Thanked 0 Times in 0 Posts

Re: Value Chart Indicator

Quote:
Originally Posted by Strade »
I user amibroker. Could any one convert it to amibroker indicator?
i'm using amibroker too, anyone has an afl version? thanks!
bats97 is offline  
Reply With Quote
Old 04-29-2009, 11:20 AM   #12

Join Date: Jul 2007
Location: kop
Posts: 2
Ignore this user

Thanks: 2
Thanked 0 Times in 0 Posts

Re: Value Chart Indicator

AFL for amibroker plz
atuldoc is offline  
Reply With Quote
Old 05-06-2009, 03:15 AM   #13

Join Date: May 2009
Location: Aurangabad
Posts: 5
Ignore this user

Thanks: 1
Thanked 0 Times in 0 Posts

Re: Value Chart Indicator

If AFL version of Amibroker is available, please post it.
nilu_2005 is offline  
Reply With Quote
Old 05-06-2009, 06:14 AM   #14

trader_08's Avatar

Join Date: Nov 2008
Location: vapi
Posts: 5
Ignore this user

Thanks: 162
Thanked 3 Times in 1 Post

Re: Value Chart Indicator

Quote:
Originally Posted by nilu_2005 »
If AFL version of Amibroker is available, please post it.
Here is the afl for amibroker...


HTML Code:
////  Vchart
//This was converted from code created for tradestation by Mark W. Helweg of ValueCharts.com
VarNumbars = Param("Number of Bars",5,2,1000,1);
Color = Param("Bar Color",colorBlue);
Top = Param("Top Chart Line",8);
TopMid = Param("Top Mid Chart Line",4);
BottomMid = Param("Bottom Mid Chart Line",-4);
Bottom = Param("Bottom Chart Line",-8);
Plot(Top,"Top Chart Line",colorRed);
Plot(TopMid,"Top Mid Chart Line",colorLightGrey);
Plot(BottomMid,"Bottom Mid Chart Line",colorLightGrey);
Plot(Bottom,"Bottom Chart Line",colorRed);

LRange = 0;
	VarP = round(VarNumBars/5);
if (VarNumBars > 7) 
{
	VarA=HHV(H,VarP)-LLV(L,VarP);
	VarR1 = IIf(VarA==0 AND VarP==1,abs(C-Ref(C,-Varp)),VarA);
	VarB=Ref(HHV(H,VarP),-VarP+1)-Ref(LLV(L,VarP),-VarP);
	VarR2 = IIf(VarB==0 AND VARP==1,abs( Ref(C,-VarP)-Ref(C,-Varp*2) ),VarB);
	VarC=Ref(HHV(H,VarP),-VarP*2)-Ref(LLV(L,VarP),-VarP*2);
	VarR3 = IIf(VarC == 0 AND VarP==1,abs(Ref(C,-Varp*2)-Ref(C,-Varp*3)),VarC);  
	VarD = Ref(HHV(H,VarP),-VarP*3)-Ref(LLV(L,VarP),-VarP*3);
	VarR4 = IIf(VarD == 0 AND VarP==1,abs(Ref(C,-Varp*3)-Ref(C,-Varp*4)),VarD);	
	VarE = Ref(HHV(H,VarP),-VarP*4)-Ref(LLV(L,VarP),-VarP*4);
	VarR5 = IIf(VarE == 0 AND VarP==1,abs(Ref(C,-Varp*4)-Ref(C,-Varp*5)),VarE);	
	LRange=((VarR1+VarR2+VarR3+VarR4+VarR5)/5)*.2;
};


CDelta = abs(C - Ref(C,-1));
if (VarNumBars <=7)
{
	Var0 = IIf(CDelta > (H-L) OR H==L,CDelta,(H-L));
	LRange = MA(Var0,5)*.2;
}
MidBarAverage = MA( (H+L)/2,VarNumbars);
VOpen = (Open- MidBarAverage)/LRange;
VHigh = (High-MidBarAverage)/LRange;
VLow = (Low-MidBarAverage)/LRange; 
VClose = (Close-MidBarAverage)/LRange; 
PlotOHLC(VOpen,VHigh,VLow,VClose,"ValueChart",color,styleBar | styleThick ,-12,12);
Title= Name() + " " + WriteVal( DateTime(), formatDateTime )+
	"\nVOpen " + VOpen + "\n"+ " VHigh "+ VHigh + "\n"+ " VLow " + Vlow  + "\n"+ " VClose " + VClose;
trader_08 is offline  
Reply With Quote
The Following 3 Users Say Thank You to trader_08 For This Useful Post:
anshuman.c (03-27-2010), atuldoc (05-08-2009), nilu_2005 (05-06-2009)
Old 05-06-2009, 07:22 AM   #15

Join Date: May 2009
Location: Aurangabad
Posts: 5
Ignore this user

Thanks: 1
Thanked 0 Times in 0 Posts

Re: Value Chart Indicator

This code is working fine in Amibroker. Thanks trader_08 for sharing this code.
nilu_2005 is offline  
Reply With Quote
Old 08-06-2009, 11:44 AM   #16

Join Date: May 2009
Location: chitown
Posts: 9
Ignore this user

Thanks: 5
Thanked 0 Times in 0 Posts

Re: Value Chart Indicator

If anyone has a valuechart radarsceen ELD could you please post. Thank you.
scottzim46 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 10:13 PM.
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
CS to VB integration by DeskLancer
©2006-2011 Traders Laboratory, All Rights Reserved.