Update app.py
Browse files
app.py
CHANGED
@@ -112,7 +112,7 @@ instrument_config = INSTRUMENTS[selected_instrument]
|
|
112 |
df = load_data(instrument_config["config"], instrument_config["split"])
|
113 |
|
114 |
if df is not None:
|
115 |
-
df["FECHA
|
116 |
|
117 |
# Cargar configuraci贸n guardada si existe
|
118 |
config_path = f"configs/{instrument_config['config']}_config.json"
|
|
|
112 |
df = load_data(instrument_config["config"], instrument_config["split"])
|
113 |
|
114 |
if df is not None:
|
115 |
+
df["FECHA NEGOCIACI脫N"] = pd.to_datetime(df["FECHA NEGOCIACI脫N"], format="%Y-%m-%d")
|
116 |
|
117 |
# Cargar configuraci贸n guardada si existe
|
118 |
config_path = f"configs/{instrument_config['config']}_config.json"
|