File tree 1 file changed +2
-18
lines changed
1 file changed +2
-18
lines changed Original file line number Diff line number Diff line change 12
12
13
13
def News (symbol ):
14
14
get_Data = yf .Ticker (symbol )
15
- # msft.news
16
-
15
+
17
16
#news section
18
17
try :
19
18
NEWS = get_Data .news
20
- # sr.Markdown(f"{NEWS}")
21
19
sr .Markdown (f"# News of { v .value } :" )
22
20
for i in range (len (NEWS )):
23
21
sr .Markdown ("\n ********************************\n " )
@@ -36,7 +34,7 @@ def News(symbol):
36
34
except Exception as e :
37
35
sr .Markdown (e )
38
36
sr .Markdown ("No news available" )
39
- # News(select)
37
+
40
38
41
39
42
40
@@ -48,26 +46,12 @@ def Page():
48
46
with sr .Column () as main :
49
47
with sr .Sidebar ():
50
48
sr .Markdown ("## **stock Analysis**" )
51
- # sr.SliderInt(label="Ideal for placing controls")
52
- # sr.header("**srock Analysis**")
53
49
sr .Select ("Select stock" ,value = v ,values = company )
54
50
55
51
select = Company_Name .get (v .value )
56
52
57
53
58
- # sr.Text(select_company)
59
- # sr.Info("I'm in the main content area, put your main content here")
60
-
61
54
News (select )
62
55
63
- # sr.FigurePlotly(qs.plots.daily_returns(ITC,benchmark="US"))
64
56
return main
65
57
66
-
67
-
68
- # @app.route("/")
69
- # def hello_world():
70
- # return "<p>Hello, World!</p>"
71
-
72
- # if __name__=="__main__":
73
- # app.run(debug=False)
You can’t perform that action at this time.
0 commit comments