From b2c332e3b57ab33cc1bebc131033c8e618100111 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Sat, 20 Jan 2024 11:17:51 -0800 Subject: [PATCH] readme: update function groups example --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 05cac1eb0..4fcab2b72 100644 --- a/README.md +++ b/README.md @@ -448,10 +448,14 @@ etc): import talib # list of functions -print talib.get_functions() +for name in talib.get_functions(): + print(name) # dict of functions by group -print talib.get_function_groups() +for group, names in talib.get_function_groups(): + print(group) + for name in names: + print(name) ``` ### Indicator Groups