I am trying to create a way to convert some values of numbers into currency (dollars). The example I display below takes in three random numbers between -4 and 4, and rounds them to the second decimal place. How could I create the output in $$ though? Should I try something rule based?
Clear[sequence];
sequence = RandomReal[{-4, 4}, 3];
Map[(N[Round[10^2 *#]/(10^2)]) &, sequence]
{-3.73, 2.03, 0.31}
But I want -$3.73 and so on...
