PureBytes Links
Trading Reference Links
|
Dennis/Lisa
Here's the a close approximation of the TVS formula (proprietary with
Worden)that I picked up from a AmiBroker user.
Dick H.
T = 18; // For a TSV with 18 day period
TMA = 9; // For MA of TSV
Alpha = 2/(T+1);
TSVd= ( C-Ref(C,-1)) / ( H-L )*V;
/* The following calculates Exponential Average for TSV */
TSV_exp = 100*(AMA(TSVd,Alpha) * T/10000000);
TSV_ref= Sum((( C-Ref(C,-1)) / ( H-L ))*V, T ); //for reference
/* The following is simple TSV */
TSV = MA(TSVd,T) * T/10000000;
TSV_MA = MA(TSV_exp,TMA);
//Plot(TSV,"TSV",4,4 + 2);
//Plot(TSV,"TSV"+ WriteVal(T,1.0),5,4);
Plot(TSV_MA,"MA",4,4);
Plot(TSV_Exp,"TSV(exp)",colorGreen,4);
Plot(0,"",7,1);
_SECTION_END();
--- In amibroker@xxxxxxxxxxxxxxx, "Dennis And Lisa"
<dennisandlisa@xxx> wrote:
>
> Is there an indicator in AFL that is a close substitute for Balance Of
> Power and Time Segmented Volume?
>
> thanks
>
------------------------ Yahoo! Groups Sponsor --------------------~-->
Try Online Currency Trading with GFT. Free 50K Demo. Trade
24 Hours. Commission-Free.
http://us.click.yahoo.com/RvFikB/9M2KAA/U1CZAA/GHeqlB/TM
--------------------------------------------------------------------~->
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|