From e315cc6abae574d62addec0f92a07ff9bbed1c10 Mon Sep 17 00:00:00 2001 From: cardosofede Date: Fri, 9 Jun 2023 16:05:43 +0100 Subject: [PATCH] (feat) add info of where the data will be stored --- pages/6_🗂_Candles_Downloader.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/6_🗂_Candles_Downloader.py b/pages/6_🗂_Candles_Downloader.py index cf514a0..78e1679 100644 --- a/pages/6_🗂_Candles_Downloader.py +++ b/pages/6_🗂_Candles_Downloader.py @@ -19,7 +19,6 @@ st.write("---") c1, c2, c3 = st.columns([2, 2, 0.5]) with c1: exchange = st.selectbox("Exchange", ["binance_perpetual", "binance"], index=0) - # TODO: Add more trading pairs querying the exchange API trading_pairs = st.text_input("Trading Pairs (separated with commas)", value="BTC-USDT,ETH-USDT") with c2: intervals = st.multiselect("Intervals", options=["1m", "3m", "5m", "15m", "1h", "4h", "1d"], default=["1m", "3m", "1h"]) @@ -28,7 +27,6 @@ with c3: get_data_button = st.button("Download Candles!") clean_container_folder_button = st.button("Clean Candles Folder") - if clean_container_folder_button: st.warning("Cleaning Candles Data folder...", icon="⚠️") st.write("---") @@ -45,6 +43,8 @@ if get_data_button: } time.sleep(0.5) docker_manager.create_download_candles_container(candles_container_config) + st.info("Downloading candles with a Docker container in the background. " + "When this process is ready you will see the candles inside data/candles", icon="🕓") st.write("---") st.write("---")