community增加事件详情
This commit is contained in:
4
app.py
4
app.py
@@ -11123,7 +11123,7 @@ def get_events_effectiveness_stats():
|
||||
return jsonify({
|
||||
'success': True,
|
||||
'data': {
|
||||
'currentDate': end_date.strftime('%Y-%m-%d'),
|
||||
'currentDate': current_trading_day.strftime('%Y-%m-%d') if hasattr(current_trading_day, 'strftime') else str(current_trading_day),
|
||||
'summary': {
|
||||
'totalEvents': 0,
|
||||
'avgChg': 0,
|
||||
@@ -11222,7 +11222,7 @@ def get_events_effectiveness_stats():
|
||||
return jsonify({
|
||||
'success': True,
|
||||
'data': {
|
||||
'currentDate': end_date.strftime('%Y-%m-%d'),
|
||||
'currentDate': current_trading_day.strftime('%Y-%m-%d') if hasattr(current_trading_day, 'strftime') else str(current_trading_day),
|
||||
'summary': summary,
|
||||
'dailyStats': daily_stats,
|
||||
'topPerformers': top_performers_list
|
||||
|
||||
Reference in New Issue
Block a user