Metadata-Version: 2.1
Name: ftsf
Version: 0.0.1.4
Summary: Package for financial time series forecasting.
Author-email: Nikita Safonov <sixxio@yandex.ru>
Project-URL: Homepage, https://github.com/sixxio/ftsf
Project-URL: Documentation, https://sixxio.github.io/ftsf/
Project-URL: Bug Tracker, https://github.com/sixxio/ftsf/issues
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# ftsf
This package provides high-level interface to work with financial time series forecasting models.
### Installation
To install this package run command:
> pip install ftsf
### Usage
The usage of package is simple:
> from ftsf.model import Model  
> from ftsf.preprocessing import get_data  
> x_train, x_test, y_train, y_test, scaler = get_data('AAPL', length=15)  
> model = Model('LSTM x2', lag = 15)  
> model.fit(x_train, y_train)
> model.evaluate(x_test, y_test, scaler)  
