Update ta_indi_pat.py
Browse files- ta_indi_pat.py +5 -1
ta_indi_pat.py
CHANGED
|
@@ -43,7 +43,11 @@ def indicators(df):
|
|
| 43 |
'volume': df_std.get('volume')
|
| 44 |
}
|
| 45 |
|
| 46 |
-
indicator_list = [f for f in dir(talib) if not f.startswith("CDL") and not f.startswith("_")]
|
|
|
|
|
|
|
|
|
|
|
|
|
| 47 |
|
| 48 |
df_list = [] # store all indicator columns as separate DataFrames
|
| 49 |
|
|
|
|
| 43 |
'volume': df_std.get('volume')
|
| 44 |
}
|
| 45 |
|
| 46 |
+
#indicator_list = [f for f in dir(talib) if not f.startswith("CDL") and not f.startswith("_")]
|
| 47 |
+
indicator_list = [
|
| 48 |
+
f for f in dir(talib)
|
| 49 |
+
if not f.startswith("CDL") and not f.startswith("_") and f not in ["wraps", "wrapped_func"]
|
| 50 |
+
]
|
| 51 |
|
| 52 |
df_list = [] # store all indicator columns as separate DataFrames
|
| 53 |
|