tti.utils package

Trading-Technical-Indicators (tti) python library

the tti.utils package includes the implementation of library utilities.

tti.utils.fillMissingValues(input_data)

Fills the missing values of a dataframe by executing first a forward pass and then a backward pass.

Parameters

input_data (pandas.DataFrame) – The input data. The index is of type pandas.DatetimeIndex.

Returns

The input data with missing values filled.

Return type

pandas.DataFrame

Raises

TypeError – Type error occurred when validating the input_data.