Metadata-Version: 2.1
Name: stolgo
Version: 0.1.0
Summary: Utilities for the analysis of financial data
Home-page: UNKNOWN
Author: stolgo Developers
Author-email: stockalgos@gmail.com
License: MIT
Download-URL: https://github.com/stockalgo/stolgo/archive/v0.1.0.tar.gz
Project-URL: Organization, http://www.stolgo.com
Project-URL: Source, https://github.com/stockalgo/stolgo
Project-URL: Tracker, https://github.com/stockalgo/stolgo/issues
Description: 
        <p align="center"><a href="http://stolgo.com" target="_blank"><img src="https://raw.githubusercontent.com/stockalgo/stolgo/master/stolgo.svg"></a> </p>
        
        stolgo is a Python library for dealing with financial data such as stocks, derivatives, commodities, and cryptocurrencies.
        
        ## Installation
        
        Use the package manager [pip](https://pip.pypa.io/en/stable/) to install stolgo.
        
        ```bash
        pip install stolgo
        ```
          
        # For data feed, Stolgo uses [bandl.io](https://bandl.io), Where by just calling get_date API, You can get data from your favourite broker or directly from exchange website or yahoo finance.
        
        ## Usage
        
        ### Get the data, for example using yahoo finance module form [bandl](https://bandl.io)
        ```python
        from bandl.yfinance import Yfinance
        testObj = Yfinance() # returns 'Yfinance class object'.
        #to get indian stock data
        dfs = testObj.get_data("SBIN",start="21-Jan-2020") #retruns data from 21Jan 2020 to till today
        ```
        
        ## Contributing
        Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
        
        Kindly follow PEP 8 Coding Style guidelines. Refer: https://www.python.org/dev/peps/pep-0008/
        
        Please make sure to update tests as appropriate.
        
        ## License
        [MIT](https://choosealicense.com/licenses/mit/)
        
Keywords: candlestick-patterns-detection,price-action,algorithmic-trading-strategies,breakout-detection,algorithmic-trading-python,algo-trading-software,nasdaq-python-api,price-action-python-api
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
