Metadata-Version: 1.1
Name: easytrader
Version: 0.7.7
Summary: A utility for China Stock Trade
Home-page: https://github.com/shidenggui/easytrader
Author: shidenggui
Author-email: longlyshidenggui@gmail.com
License: BSD
Description: 
        easytrader
        ===============
        
        * easy to use to trade in China Stock
        
        Installation
        --------------
        
        pip install easytrader
        
        Upgrade
        ---------------
        
            pip install easytrader --upgrade
        
        Quick Start
        --------------
        
        ::
        
            import easytrader
        
            user = easytrader.use('ht')
        
            user.prepare('account.json')
        
            user.balance
        
        return::
        
            [{ 'asset_balance': '资产总值',
               'current_balance': '当前余额',
               'enable_balance': '可用金额',
               'market_value': '证券市值',
               'money_type': '币种',
               'pre_interest': '预计利息' ]}
        
            user.position
        
        return::
        
            [{'cost_price': '摊薄成本价',
               'current_amount': '当前数量',
               'enable_amount': '可卖数量',
               'income_balance': '摊薄浮动盈亏',
               'keep_cost_price': '保本价',
               'last_price': '最新价',
               'market_value': '证券市值',
               'position_str': '定位串',
               'stock_code': '证券代码',
               'stock_name': '证券名称'}]
        
            user.entrust
        
        return::
        
            [{'business_amount': '成交数量',
              'business_price': '成交价格',
              'entrust_amount': '委托数量',
              'entrust_bs': '买卖方向',
              'entrust_no': '委托编号',
              'entrust_price': '委托价格',
              'entrust_status': '委托状态',  # 废单 / 已报
              'report_time': '申报时间',
              'stock_code': '证券代码',
              'stock_name': '证券名称'}]
        
            user.buy('162411', price=5.55)
        
            user.sell('16411', price=5.65)
        
        
Keywords: China stock trade
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: License :: OSI Approved :: BSD License
