[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: TS4 log function



PureBytes Links

Trading Reference Links

> > I am trying to calc a base 10 log in a TS indicator
> log10 = log(num) / 2.302585;

Or more generally,

   logN = log(num) / log(N)

Gary