| Trading Indicators Post your custom trading indicators. If you download, remember to click INSTALL. |
![]() | | Tweet | |
Value Chart Indicator Details »» | |||||||||||||||||||||||||||
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
Show Your Support
| |||||||||||||||||||||||||||
| Comments |
| | #2 | ||
![]() | Re: Value Chart Indicator ![]() Hope this helps Blu-Ray
__________________ “ 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 | ||
| |
|
| | #3 | ||
| Re: Value Chart Indicator
__________________ | |||
| |
|
| | #4 | ||
![]() | Re: Value Chart Indicator 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
********************************************************************} | ||
| |
|
| | #5 | ||
![]() | Re: Value Chart Indicator 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. | ||
| |
|
| | #6 | ||
![]() | Re: Value Chart Indicator VinceB | ||
| |
|
| The Following 2 Users Say Thank You to godman For This Useful Post: | ||
opmtraders (12-26-2008), zdo (09-10-2008) | ||
| | #7 | ||
![]() | Re: Value Chart Indicator 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… hthCode:
[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 ...
} | ||
| |
|
| The Following 2 Users Say Thank You to zdo For This Useful Post: | ||
daedalus (09-10-2008) | ||
| | #8 | ||
![]() | Re: Value Chart Indicator | ||
| |
|
![]() |
| Thread Tools | |
| 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 |