mirror of
https://github.com/microsoft/qlib.git
synced 2026-07-02 10:31:00 +08:00
11 lines
185 B
Python
11 lines
185 B
Python
# Copyright (c) Microsoft Corporation.
|
|
# Licensed under the MIT License.
|
|
|
|
# REGION CONST
|
|
REG_CN = "cn"
|
|
REG_US = "us"
|
|
REG_TW = "tw"
|
|
|
|
# Epsilon for avoiding division by zero.
|
|
EPS = 1e-12
|