-
Converts a list of numbers to a list of strings.
Example:
local tests = 100 local t StartTimer() CC_ListToStringList(ClosePrices()) t = StopTimer() Log('single run: '..t..'ms') StartTimer() for i = 1, tests do CC_ListToStringList(ClosePrices()) end t = StopTimer() Log(tests..' run(s): '..t..'ms')