Replicate the app from the image.
Drop files here
or click to upload
import streamlit as st
st.title("Configuración de Scanner")
st.subheader("Fundamental")
# Create input fields for scanner configuration
market_cap = st.text_input("Market Cap")
float_val = st.text_input("Float < (30M)")
price_var = st.text_input("Variación Precio > (30)")
avg_volume = st.text_input("Volumen Medio > (100k)")
price = st.text_input("Precio < $(15)")
# Create two columns for buttons
col1, col2 = st.columns(2)
with col1:
if st.button("Guargar", use_container_width=True):
st.success("Configuration saved!")
with col2:
if st.button("Cancelar", type="primary", use_container_width=True):
st.write("Operation cancelled")
Hi! I can help you with any questions about Streamlit and Python. What would you like to know?