summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Delahunty <72827203+colin99d@users.noreply.github.com>2023-08-17 14:39:34 -0700
committerGitHub <noreply@github.com>2023-08-17 21:39:34 +0000
commitb27bb59ef628c2d6cde36cf231a3a9580212e457 (patch)
treefb5ce9dfb1215a03cadfc1e6c739ba4a7991329b
parenta6e66f7a730fb2aa23e805fd8abe8dddba8990a4 (diff)
Added fixes (#5344)
-rw-r--r--openbb_terminal/economy/econdb_model.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/openbb_terminal/economy/econdb_model.py b/openbb_terminal/economy/econdb_model.py
index d48ae665a77..3ad6e64a6d5 100644
--- a/openbb_terminal/economy/econdb_model.py
+++ b/openbb_terminal/economy/econdb_model.py
@@ -419,9 +419,12 @@ TRANSFORM = {
SCALES = {
"Thousands": 1_000,
"Tens of thousands": 10_000,
+ "Hundreds of thousands": 100_000,
"Millions": 1_000_000,
+ "Tens of millions": 10_000_000,
"Hundreds of millions": 100_000_000,
"Billions": 1_000_000_000,
+ "Tens of billions": 10_000_000_000,
"Units": 1,
}