The VWMA is Volume weighted moving average
which Buff published his formula in TASC. He also developed a VMACD.
Regards,
Fom: Bob Jagow
[mailto:bjagow@xxxxxxxxxxxxx]
Sent: Tuesday, January 11, 2005 9:31 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: RE: [amibroker] VPCI
indicator in Active Trader Feb 2005
Could be wrong, but methinks '(bd.vwma(l,len,voltoday)' is 'Buff
Dormeier'
secret sauce.
Bob
-----Original Message-----
From: exchangeexpert
[mailto:abrasive1@xxxxxxxxxxx]
Sent: Tuesday, January 11, 2005 6:43 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] VPCI indicator in Active
Trader Feb 2005
can someone help translate this from tradestation
code? TIA:
TradeStation code for the Volume Price
Confirmation indicator
(VPCI), p. 38:
{*******************************************************************
Description : This Indicator plots VPCI, Volume
Price Confirmation
indicator
Developed by: Buff Dormeier, CMT
Marketguru@xxxxxxxxx or (800) 552-0774
********************************************************************}
Inputs:len2(10),VolToday(true), BBLength(3),
StandardDev(2),
UpColor(DarkGreen), DnColor(Red);
;
variables:
VPCI(0),len(0),volumevolitility(0),vadjuster(0),vspread(0),smoothVPCI
(0);
len=len2*4;
VPCI= (bd.vwma(l,len,voltoday) -
average(l,len))*(((bd.vwma(l,len,voltoday))/average(l,len)))
*
((bd.vwma(l,len2,voltoday))/average(l,len2))
* ((AVERAGE(V,len2)/ AVERAGE(V,len)));
smoothVPCI= bd.vwma(VPCI,len,voltoday);
volumevolitility= (average
(volume,5)/average(volume,15))
*standardDev;
vspread= average(l,len)-(bd.vwma(l,len,voltoday));
vadjuster= vspread + average(l,len);
Plot1 (VPCI, "T");
Plot2 (smoothVPCI,"ST");
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at:
http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
Check
AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
--
No virus found in this incoming message.
Checked by AVG Anti-Virus.
Version: 7.0.300 / Virus Database: 265.6.10 - Release Date: 1/10/2005
--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.300 / Virus Database: 265.6.10 - Release Date: 1/10/2005