Elastic Volume Weighted Moving Average
For interpretation refer to the June 2001 issue of Technical Analysis of STOCKS & COMMODITIES magazine.
input
inp0:"Enter the number of shares:", 10000000, 10000000, 900000000;
end_input
var
n:=inp0;
eVWMA:=((n - V) * iff(historysize>0,this\1\,0) + (V * C)) / n;
end_var
return eVWMA;
|
Download to import into Tradecision. 
How to use this indicator in Tradecision:
- Click Download.
- Save this indicator in a safe location on your hard drive.
- Open Tradecision and in the Tools menu click Indicator Builder.
- In the Indicator Builder dialog, click Import, locate the saved file and then click OK.
The indicator will be added to the Custom Indicators list.
|