Metadata-Version: 2.1
Name: tradingfeatures
Version: 0.4.4
Summary: A small package to get history, easily download all avaliable history to csv or update current csv files
Home-page: https://github.com/realiti4/tradingfeatures
Author: Onur Cetinkol
Author-email: realiti44@gmail.com
License: UNKNOWN
Description: # tradingfeatures
        A useful tool to download market history from popular exchanges.
        
        
        ## Installation
        
            pip install tradingfeatures
        
        or	
        
            pip install git+https://github.com/realiti4/tradingfeatures.git@master --upgrade
        
        ## Example
        You can use `.get()`, `.get_history()` and `.update()` with all avaliable apis. Currently supported:
        
        * Bitfinex
        * Bitstamp
        * Binance
        
        ### Get most recent history with .get()
        
            import pandas as pd
            from tradingfeatures import bitfinex, bitstamp, binance
        
            bitfinex = bitfinex()
        
            df = bitfinex.get()
        
        This is useful to get most recent history. But limit is 10000 for Bitfinex and 1000 for Bitstamp.
        
        ### Download all available history with .get_history()
        The tool will download all avaliable history while respesting request per minute limits. Using it easy, and it takes couple of minutes for 1h data.
        
            import pandas as pd
            from tradingfeatures import bitfinex, bitstamp, binance
        
            bitstamp = bitstamp()
            
            df = bitstamp.get_hist()
            df.to_csv('bitstamp_1h.csv') 
        
        ### Updating a csv file with .update()
        
            import pandas as pd
            from tradingfeatures import bitfinex, bitstamp, binance
        
            bitstamp = bitstamp()
            
            bitstamp.update_csv('bitstamp.csv')    
        
        Update takes a path variable to csv file and updates it.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
