Hi, all,
This is my
first participation.
I have been
trying to make the TRIN indicator work by following the directions int he Help
file as follows:
- Open Categories under Symbol
menu
- Select NYSE under the Base Index for Composites and RSI
- Go
to Symbol Calculate Composites where I choose: Number of Advance/Declines,
All Quotes, All Markets per online help.
- When
I click on Calculate I get a small menu that has a heading
"Undefined." Then it closes with 0 time elapsed.
- I
am using TC2005 plug in for data, if that matters.
Can
anyone tell me what I am doing wrong? Would appreciate your help.
Charles
P.S. I piddled
around with a couple of efforts to produce a TSV (from TC2000) and lucked onto
this one. The following formula for TC2000 TSV works exactly like the real one (as
far as I can tell) as far as cross overs and shape, though the magnitudes seem
to vary slightly. However, Magnitude doesn't really matter with TSV, but mainly
the direction of the slope and whether it is above or below the 0 line. Check
it out.
//TSV Clone
// I figured out this by tackling the name of the
indicator: Time Segmented Volume.
//I figured it would have to be some kind of moving
average based around volume. It works.
//TSV has no specific value in TC2000. The key is in
the divergence or convergence and in its position
// above zero line. So, although this isn't an exact
match, it is close enough for interpretation identical
// to the real TC2000 TSV. I intend to play with the
time element to see what happens.
//All the crossovers are at the right dates and the
shapes are close to identical.
Time = 18;
TSVd= ( C-Ref(C,-1)) / ( H-L)*V;
TSV=EMA(0.10526315789473684210526315789474*(EMA(TSVd,13)),1) * Time/10000000;
Plot(TSV,"TSV",colorBrightGreen,1);
Plot(0,"",47,1);