tensortrade.feed.api.float.utils module¶
- tensortrade.feed.api.float.utils.ceil(s: Stream[float]) Stream[float] [source]¶
Computes the ceiling of a float stream.
- Parameters:
s (Stream[float]) – A float stream.
- Returns:
Stream[float] – The ceiling stream of s.
- tensortrade.feed.api.float.utils.diff(s: Stream[float], periods: int = 1) Stream[float] [source]¶
Computes the difference of a float stream.
- Parameters:
s (Stream[float]) – A float stream.
periods (int, default 1) – The number of periods to lag for until computing the difference.
- Returns:
Stream[float] – The difference stream of s.
- tensortrade.feed.api.float.utils.floor(s: Stream[float]) Stream[float] [source]¶
Computes the floor of a float stream.
- Parameters:
s (Stream[float]) – A float stream.
- Returns:
Stream[float] – The floor stream of s.
- tensortrade.feed.api.float.utils.log(s: Stream[float]) Stream[float] [source]¶
Computes the log of a float stream.
- Parameters:
s (Stream[float]) – A float stream.
- Returns:
Stream[float] – The log stream of s.
- tensortrade.feed.api.float.utils.pct_change(s: Stream[float], periods: int = 1, fill_method: str = 'pad') Stream[float] [source]¶
Computes the percent change of a float stream.