Hi all, I am stumped.
If I want to add an additional data series to a HLOC Chart that is a line
series of a simple 20 day moving average for the closing price ("Close") value
in an array collection (Array_Tickers)... how would I perform that calculation
in Flex?
<mx:lineSeries id=mavg
dataprovider="Array_Tickers"
ySeries="Close" />
How would I calculate "Close" as {The SUM for the Value of "Close" for the
previous 20 days / divided by 20}...

