You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
329 B
13 lines
329 B
# -*- coding: utf-8 -*-
|
|
"""
|
|
WorldQuant Brain 因子模拟器
|
|
用于批量模拟Alpha因子的工具
|
|
"""
|
|
|
|
__version__ = "0.0.1"
|
|
__author__ = "Jack"
|
|
|
|
from .core.api_client import WorldQuantBrainSimulate
|
|
from .managers.simulation_manager import AlphaSimulationManager
|
|
|
|
__all__ = ['WorldQuantBrainSimulate', 'AlphaSimulationManager'] |