TargetPrice
For interpretation refer to the February 2000 issue of Technical Analysis of STOCKS & COMMODITIES magazine.
input
inp0:"length of 1st moving average", 5, 2, 200;
inp1:"length of 2nd moving average", 10, 2, 200;
end_input
var
x:=inp0;
y:=inp1;
end_var
return ((((y * (CumSum(C, x - 1)) - (x * CumSum(C, y - 1))) / (x - y)) / Close) - 1) * 100;
|
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.
|