33 lines
789 B
Python
33 lines
789 B
Python
PAGE_TITLE = "ARQ Usage Survey"
|
|
|
|
USAGE_FREQUENCY_OPTIONS = [
|
|
"Multiple times a day",
|
|
"Multiple times a week",
|
|
"A few times a month",
|
|
"Tried once or twice",
|
|
"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",
|
|
]
|