Is there a function equivalent to "isnan" that works for financial time series (fints) input arguments?
Show older comments
Hi,
I am trying to replace NANs with a number 0 (zero) in a financial time series object (pnl), that calculates the profit and loss for a trading algorithm.
(I need to replace the NANs with zeros to calculate the cumulative sum of the profits and losses using the cumsum function. )
Instead, I get the following error message:
"Undefined function 'isnan' for input arguments of type 'fints'."
Please help.
Answers (1)
per isakson
on 19 Dec 2013
tsobj = fints(dates, data) constructs a financial time series object. Thus, you have to do something like
tsobj = fints(dates, data)
isnan( tsobj.data )
Categories
Find more on Lengths and Angles in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!