Quote from jficquette:
It only matters if volume is at least average. Low volume days distort Trin.
Best modality to gauge intraday strength is advance issues/advanced+decline. This gives % of stocks up on day.
In a non trending day readings of 67 or 33 percent indicated overbought or oversold.
Days where it is above 85% with news will generally close on its high.
Here is TS code:
[LegacyColorValue = true];
[SameTickOpt = True];
inputs:
AdvIssues( Close of data1),
DecIssues( Close of data2),
OB(.67),
OS(.33),
Avg(1);
value1= advissues;
value2= advissues+decissues;
value3= iff(value1=0,0, value1/value2);
Plot1( Value3, "A/D%" ) ;
Plot2(ob,"OB");
plot3(os,"OS");
Plot4(.50,"CL");
Thanks to you and Lawrence.