mirror of
https://github.com/microsoft/qlib.git
synced 2026-06-30 01:21:18 +08:00
* [807] Move the REG_CONSTANT to constant.py. * import REG_US. * Move EPS to constant.py.
10 lines
171 B
Python
10 lines
171 B
Python
# Copyright (c) Microsoft Corporation.
|
|
# Licensed under the MIT License.
|
|
|
|
# REGION CONST
|
|
REG_CN = "cn"
|
|
REG_US = "us"
|
|
|
|
# Epsilon for avoiding division by zero.
|
|
EPS = 1e-12
|