I have done in a similar way.
you need to add a column with the difference of the Amount, remember to make 0 the difference for the very first value instead of null.
For the Top Value, use the regular Amount Field
The magic is in the bottom value. it must have the following formula.
=iif(Sum(Fields!DifferenceAmount.Value) = 0, Sum(Fields!DifferenceAmount.Value) ,Sum(Fields!SalesAmount.Value) - Sum(Fields!DifferenceAmount.Value))
=IIF(Fields!SalesAmount.Value >= Previous(Fields!SalesAmount.Value), "Green", "Red")
and done :)