src/backend/entrypoints/streamlit_frontend/state.py [441:449]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if indicators_dialogue != [] and any(indicators_dialogue):
        try:
            indicator_step(st.session_state)
            ind_code_block, _ = get_code_sections(st.session_state["indicators_dialogue"][-1])
            st.session_state.application_flow.clear_backtesting_run()
            st.session_state.application_flow.add_indicators_run_into_operation()
            st.session_state.application_flow.set_prev_code(ind_code_block)
        except Exception as e:
            st.session_state.indicator_error = repr(e)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/backend/entrypoints/streamlit_frontend/state.py [545:553]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if indicators_dialogue != [] and any(indicators_dialogue):
        try:
            indicator_step(st.session_state)
            ind_code_block, _ = get_code_sections(st.session_state["indicators_dialogue"][-1])
            st.session_state.application_flow.clear_backtesting_run()
            st.session_state.application_flow.add_indicators_run_into_operation()
            st.session_state.application_flow.set_prev_code(ind_code_block)
        except Exception as e:
            st.session_state.indicator_error = repr(e)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



