kevinhug commited on
Commit
8b3f79b
·
1 Parent(s): 267d883
Files changed (1) hide show
  1. app.py +18 -3
app.py CHANGED
@@ -242,18 +242,33 @@ Use Case:
242
  btn_ts.click(fn=trend, inputs=in_ts, outputs=plot)
243
 
244
  gr.Markdown("""
245
-
246
  Maximizing Trading Efficiency: Personalize Your Asset Allocation for Optimal Growth
247
  =========
248
  The industry life cycle is a useful tool for traders to identify growth and decline industries. It describes the evolution of an industry based on its stages of growth and decline
249
 
250
  #### There are four phases of the industry life cycle: introduction, growth, maturity, and decline
251
- - By identifying growth and decline industries, traders can make informed investment decisions and speed up trading by investing in companies that are likely to experience growth in the future and avoiding companies that are likely to experience a decline in the future.
 
 
 
252
 
253
- #### Personalize objective function and cost function
254
  - cost function can prevent selecting decline industry
 
 
255
  - objective function can identify potential industry
256
 
 
 
 
 
 
 
 
 
 
 
 
257
  """)
258
 
259
  demo.launch()
 
242
  btn_ts.click(fn=trend, inputs=in_ts, outputs=plot)
243
 
244
  gr.Markdown("""
 
245
  Maximizing Trading Efficiency: Personalize Your Asset Allocation for Optimal Growth
246
  =========
247
  The industry life cycle is a useful tool for traders to identify growth and decline industries. It describes the evolution of an industry based on its stages of growth and decline
248
 
249
  #### There are four phases of the industry life cycle: introduction, growth, maturity, and decline
250
+ By identifying growth and decline industries, traders can make informed investment decisions and speed up trading by investing in companies that are likely to experience growth in the future and avoiding companies that are likely to experience a decline in the future.
251
+
252
+ - Long Trader: buy growth industry
253
+ - Short Trader: sell decline industry
254
 
255
+ #### Personalize objective function and cost function for each trader
256
  - cost function can prevent selecting decline industry
257
+ we can use this to filter out blacklisted firms for compliance
258
+
259
  - objective function can identify potential industry
260
 
261
+ #### Personalize UI to fit each trader
262
+ here is my https://public.tableau.com/app/profile/kevin1619
263
+
264
+ customize UI for secret sauce formula for stock picking:
265
+ - metric: moving average for the price, moving average for volume, ...etc
266
+ - timeframe chain: monthly, weekly, daily, 4h, 15 min
267
+
268
+ #### Personalize Alert with Twilio
269
+ The trader can set their price to buy at the right price at the right time, without missing the right entry in a high stress environment
270
+
271
+
272
  """)
273
 
274
  demo.launch()