Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Under the **Supported Indicators and Functions** section, the example code for the *dict of functions by group* did not work. Fixed the example code.
  • Loading branch information
clamytoe authored and mrjbq7 committed Mar 9, 2024
1 parent cbf56c9 commit 63ae189
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ for name in talib.get_functions():
print(name)

# dict of functions by group
for group, names in talib.get_function_groups():
for group, names in talib.get_function_groups().items():
print(group)
for name in names:
print(name)
Expand Down

0 comments on commit 63ae189

Please sign in to comment.