Metadata-Version: 2.1
Name: ysignals
Version: 0.0.1rc0
Summary: Yahoo Signals
Home-page: UNKNOWN
Author: Jordi Villar
Author-email: jrdi.villar@gmail.com
License: Apache License
Description: # ysignals
        
        ## Install
        
        ```
        pip install -U git+http://github.com/jrdi/ysignals.git@master#egg=ysignals
        ```
        
        ## Usage
        
        ```python
        from pathlib import Path
        
        from ysignals.data import yahoo
        from ysignals.features import RSI
        
        db_dir = Path('db')
        
        yahoo.download_data(db_dir)
        
        features_generators = [
            RSI(num_days=5, interval=10)
        ]
        
        train, test, live, feature_names = yahoo.get_data(db_dir, features_generators=features_generators)
        ```
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Development Status :: 3 - Alpha
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Office/Business :: Financial :: Investment
Classifier: Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: test
