Spaces:
Build error
Build error
David Li commited on
Commit ·
3d4e208
1
Parent(s): c9b1a7c
fix: nuke export
Browse files- pages/ta.py +2 -2
pages/ta.py
CHANGED
|
@@ -38,13 +38,13 @@ ran_donchian_name = f"donchian-{rand_int}.png"
|
|
| 38 |
# @remove_existing_file
|
| 39 |
@st.experimental_memo
|
| 40 |
def build_bbands_img(data, symbol, window=15, n_std=2, export="bbands.png"):
|
| 41 |
-
return bbands_chart(data, symbol, window, n_std
|
| 42 |
|
| 43 |
|
| 44 |
# @remove_existing_file
|
| 45 |
@st.experimental_memo
|
| 46 |
def build_donchian_img(data, symbol, export="donchian.png"):
|
| 47 |
-
return donchian_chart(data, symbol
|
| 48 |
company_name = symbol.upper()
|
| 49 |
|
| 50 |
start = pd.to_datetime(start)
|
|
|
|
| 38 |
# @remove_existing_file
|
| 39 |
@st.experimental_memo
|
| 40 |
def build_bbands_img(data, symbol, window=15, n_std=2, export="bbands.png"):
|
| 41 |
+
return bbands_chart(data, symbol, window, n_std)
|
| 42 |
|
| 43 |
|
| 44 |
# @remove_existing_file
|
| 45 |
@st.experimental_memo
|
| 46 |
def build_donchian_img(data, symbol, export="donchian.png"):
|
| 47 |
+
return donchian_chart(data, symbol)
|
| 48 |
company_name = symbol.upper()
|
| 49 |
|
| 50 |
start = pd.to_datetime(start)
|