Rule Based Simulator System Architecture - jaeaehkim/trading_system_beta GitHub Wiki

Motivation

  • 초기
  • ν™•μž₯

Simulator System

image image

Directory Structure

β”œβ”€β”€ .git
β”œβ”€β”€ analysis
β”‚   β”œβ”€β”€ engine.py
β”‚   β”œβ”€β”€ schema.json
β”‚   β”œβ”€β”€ utils.py
β”‚   β”œβ”€β”€ __init__.py
β”‚   └── __pycache__
β”œβ”€β”€ app
β”‚   β”œβ”€β”€ app.py
β”‚   β”œβ”€β”€ request.json
β”‚   └── __pycache__
β”œβ”€β”€ dataloader
β”‚   β”œβ”€β”€ mongo_dataloader.py
β”‚   β”œβ”€β”€ mongo_server.py
β”‚   └── __pycache__
β”œβ”€β”€ logs
β”‚   β”œβ”€β”€ config.py
β”‚   β”œβ”€β”€ handler.py
β”‚   β”œβ”€β”€ logfiles
β”‚   β”‚   β”œβ”€β”€ agent.log
β”‚   β”‚   β”œβ”€β”€ all.log
β”‚   β”‚   └── trade.log
β”‚   β”œβ”€β”€ logger.py
β”‚   └── __pycache__
β”œβ”€β”€ requirements
β”‚   β”œβ”€β”€ requirements_220406.txt
β”‚   β”œβ”€β”€ requirements_220412.txt
β”‚   β”œβ”€β”€ requirements_220517.txt
β”‚   └── TA_Lib-0.4.24-cp38-cp38-win_amd64.whl
β”œβ”€β”€ simulator
β”‚   β”œβ”€β”€ base
β”‚   β”‚   β”œβ”€β”€ agent.py
β”‚   β”‚   β”œβ”€β”€ config.py
β”‚   β”‚   β”œβ”€β”€ order.py
β”‚   β”‚   β”œβ”€β”€ trade.py
β”‚   β”‚   └── __pycache__
β”‚   β”œβ”€β”€ cfg
β”‚   β”‚   β”œβ”€β”€ agent_config.json
β”‚   β”‚   β”œβ”€β”€ info_config.json
β”‚   β”‚   β”œβ”€β”€ order_config.json
β”‚   β”‚   └── trade_config.json
β”‚   β”œβ”€β”€ engine.py
β”‚   β”œβ”€β”€ utils.py
β”‚   └── __pycache__
β”œβ”€β”€ test
β”‚   β”œβ”€β”€ analysis_test.py
β”‚   β”œβ”€β”€ cal_logic_test.py
β”‚   β”œβ”€β”€ es_test.py
β”‚   └── https
β”‚       └── portofolio_execute
β”‚           β”œβ”€β”€ http-client.env.json
β”‚           └── portofolio_execute.http
└── __pycache__