I am trying to run 3 different functions that has the form {}.result(). How can I use the getarr or another function so that the all 3 functions are ran within the for loop.
values = ["RSI", "MACD","ROCR"]
for k in values:
result= getattr(k).result()
Runs:
RSI.result()
MACD.result()
ROCR.result()