C-KLex / Phraends

NLP Application for Summarizing Finance Article
0 stars 0 forks source link

Front End Stock Chart Customization #24

Open viettran15 opened 1 year ago

viettran15 commented 1 year ago

Summary

PR Detail

Screenshots

image image

YLee2121 commented 1 year ago

@viettran11 @viettran15

Could you remove the search history feature at this point, I realize it's not proper for GitHub to store cumulate more and more data. You can leave the frontend but remove the save history feature and the corresponding files before we design a better solution to store the user data, like online database.

Also, you will need to merge the Main branch first, we've changed the frontend structure into two tabs. Try to integrate your new feature into the latest file.

For the stock visualization feature, could you try to extract those codes into a component as a function for cleaner code?

Here is an example.

import streamlit as st 

def hellow_component():
    st.write("Hellow from the function")
    return 

if __name__ == '__main__':

    st.write("Hi this is main file")
    hellow_component()

image