Dick, I bet if is real simple to do with one of these attached explorations.
I suggest that you, or one of the Amibroker coders try to modify the
PERFORMANCE exploration which you brought over to Amibroker from Metastock.
Ron D
- Original Message -
From: areehoi
To: ami
Dick,
Take a look at the indicator code below. This came out of the AFL Library
someplace, but I can't remember name. This might satisfy your needs.
UpVol = ValueWhen(C > O, V);
DownVol = ValueWhen(C < O, V);
Period = Param("Period",3,2,10,1);
UpVolAvg = EMA( UpVol, Period ) ;
DownVolAvg = E