Python talib.TSF Examples
The following are 4
code examples of talib.TSF().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
talib
, or try the search function
.
Example #1
Source File: tsf.py From jesse with MIT License | 6 votes |
def tsf(candles: np.ndarray, period=14, source_type="close", sequential=False) -> Union[float, np.ndarray]: """ TSF - Time Series Forecast :param candles: np.ndarray :param period: int - default: 14 :param source_type: str - default: "close" :param sequential: bool - default=False :return: float | np.ndarray """ if not sequential and len(candles) > 240: candles = candles[-240:] source = get_candle_source(candles, source_type=source_type) res = talib.TSF(source, timeperiod=period) return res if sequential else res[-1]
Example #2
Source File: apriori.py From cryptotrader with MIT License | 5 votes |
def tsf(ts, period=14): tsf = ts.apply(ta.TSF, timeperiod=period, raw=True).fillna(0.0) return tsf
Example #3
Source File: talib_wrapper.py From tia with BSD 3-Clause "New" or "Revised" License | 5 votes |
def TSF(series, n=14): return _series_to_series(series, talib.TSF, n)
Example #4
Source File: talib_indicators.py From qtpylib with Apache License 2.0 | 5 votes |
def TSF(data, **kwargs): _check_talib_presence() prices = _extract_series(data) return talib.TSF(prices, **kwargs)