├── .gitignore ├── README.md ├── quantitative ├── __init__.py ├── engine.py ├── events.py ├── orders.py ├── performance.py ├── portfolio.py ├── securities.py ├── test_files │ ├── test_analyze_transactions.py │ ├── test_backtest.py │ ├── test_backtest_multi_sec.py │ ├── test_backtest_one_sec.py │ ├── test_buy_order.py │ ├── test_dict.py │ ├── test_engine.py │ ├── test_events.py │ ├── test_lots_of_data.py │ ├── test_np_random.py │ ├── test_object_comparison.py │ ├── test_orders.py │ ├── test_performance.py │ ├── test_portfolio.py │ └── test_securities.py └── utils.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffrey-liang/quantitative/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffrey-liang/quantitative/HEAD/README.md -------------------------------------------------------------------------------- /quantitative/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffrey-liang/quantitative/HEAD/quantitative/__init__.py -------------------------------------------------------------------------------- /quantitative/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffrey-liang/quantitative/HEAD/quantitative/engine.py -------------------------------------------------------------------------------- /quantitative/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffrey-liang/quantitative/HEAD/quantitative/events.py -------------------------------------------------------------------------------- /quantitative/orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffrey-liang/quantitative/HEAD/quantitative/orders.py -------------------------------------------------------------------------------- /quantitative/performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffrey-liang/quantitative/HEAD/quantitative/performance.py -------------------------------------------------------------------------------- /quantitative/portfolio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffrey-liang/quantitative/HEAD/quantitative/portfolio.py -------------------------------------------------------------------------------- /quantitative/securities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffrey-liang/quantitative/HEAD/quantitative/securities.py -------------------------------------------------------------------------------- /quantitative/test_files/test_analyze_transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffrey-liang/quantitative/HEAD/quantitative/test_files/test_analyze_transactions.py -------------------------------------------------------------------------------- /quantitative/test_files/test_backtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffrey-liang/quantitative/HEAD/quantitative/test_files/test_backtest.py -------------------------------------------------------------------------------- /quantitative/test_files/test_backtest_multi_sec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffrey-liang/quantitative/HEAD/quantitative/test_files/test_backtest_multi_sec.py -------------------------------------------------------------------------------- /quantitative/test_files/test_backtest_one_sec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffrey-liang/quantitative/HEAD/quantitative/test_files/test_backtest_one_sec.py -------------------------------------------------------------------------------- /quantitative/test_files/test_buy_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffrey-liang/quantitative/HEAD/quantitative/test_files/test_buy_order.py -------------------------------------------------------------------------------- /quantitative/test_files/test_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffrey-liang/quantitative/HEAD/quantitative/test_files/test_dict.py -------------------------------------------------------------------------------- /quantitative/test_files/test_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffrey-liang/quantitative/HEAD/quantitative/test_files/test_engine.py -------------------------------------------------------------------------------- /quantitative/test_files/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffrey-liang/quantitative/HEAD/quantitative/test_files/test_events.py -------------------------------------------------------------------------------- /quantitative/test_files/test_lots_of_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffrey-liang/quantitative/HEAD/quantitative/test_files/test_lots_of_data.py -------------------------------------------------------------------------------- /quantitative/test_files/test_np_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffrey-liang/quantitative/HEAD/quantitative/test_files/test_np_random.py -------------------------------------------------------------------------------- /quantitative/test_files/test_object_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffrey-liang/quantitative/HEAD/quantitative/test_files/test_object_comparison.py -------------------------------------------------------------------------------- /quantitative/test_files/test_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffrey-liang/quantitative/HEAD/quantitative/test_files/test_orders.py -------------------------------------------------------------------------------- /quantitative/test_files/test_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffrey-liang/quantitative/HEAD/quantitative/test_files/test_performance.py -------------------------------------------------------------------------------- /quantitative/test_files/test_portfolio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffrey-liang/quantitative/HEAD/quantitative/test_files/test_portfolio.py -------------------------------------------------------------------------------- /quantitative/test_files/test_securities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffrey-liang/quantitative/HEAD/quantitative/test_files/test_securities.py -------------------------------------------------------------------------------- /quantitative/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffrey-liang/quantitative/HEAD/quantitative/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffrey-liang/quantitative/HEAD/setup.py --------------------------------------------------------------------------------