forked from Hvass-Labs/FinanceOps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_keys.py
31 lines (29 loc) · 913 Bytes
/
data_keys.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
########################################################################
#
# Keys used for naming columns in Pandas DataFrames.
#
########################################################################
#
# This file is part of FinanceOps:
#
# https://github.com/Hvass-Labs/FinanceOps
#
# Published under the MIT License. See the file LICENSE for details.
#
# Copyright 2018 by Magnus Erik Hvass Pedersen
#
########################################################################
TOTAL_RETURN = 'Total Return'
SHARE_PRICE = 'Share-price'
DIVIDEND = 'Dividend'
DIVIDEND_TTM = 'Dividend TTM'
DIVIDEND_YIELD = 'Dividend Yield'
SALES_PER_SHARE = "Sales Per Share"
BOOK_VALUE_PER_SHARE = "Book-Value Per Share"
PSALES = "P/Sales"
PBOOK = "P/Book"
PDIVIDEND = "P/Dividend"
ANN_RETURN = "Annualized Return"
BOND_YIELD = "Bond Yield"
CPI = "CPI"
########################################################################