27 lines
701 B
Python
27 lines
701 B
Python
PAGE_TITLE = "ARQ Usage Survey"
|
|
|
|
USAGE_FREQUENCY_OPTIONS = ["daily", "weekly", "monthly", "Never used it"]
|
|
|
|
TASK_OPTIONS = {
|
|
"analysis": "Stock Analysis",
|
|
"portfolio": "Portfolio Analysis",
|
|
"consensus": "Consensus Data",
|
|
"screening": "Stock Screening",
|
|
"Others": "Others",
|
|
}
|
|
|
|
EXCEL_FEATURE_LIST = ["vlookup", "formulae", "others"]
|
|
|
|
ABANDONMENT_OPTIONS = ["data incomplete", "calculations not possible", "others"]
|
|
|
|
PRIORITY_TASKS = ["speed", "accuracy", "others"]
|
|
|
|
ARQ_HELPED = [
|
|
"By sending reminders",
|
|
"Helped extract data",
|
|
"Consensus data/Base rate analysis",
|
|
"Helped with screening",
|
|
"Helped with preliminary analysis of company/portfolio",
|
|
"Others",
|
|
]
|