-
Notifications
You must be signed in to change notification settings - Fork 0
/
widgets.json
1550 lines (1550 loc) · 40.8 KB
/
widgets.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"navigation_bar": {
"name": "Navigation Bar",
"description": "Create nested tabs inside the main tab for navigation",
"widgetId": "navigation_bar",
"category": "Others",
"sub_category": "Utils",
"gridData": {
"w": 40,
"h": 2,
"minW": 40,
"maxH": 2
}
},
"market_indices": {
"name": "Market Indices",
"description": "Overview of current market indices such as S&P 500, Gold, Nasdaq",
"widgetType": "individual",
"widgetId": "market_indices",
"category": "Index",
"gridData": {
"w": 40,
"h": 4,
"minW": 20
},
"source": ["fmp"]
},
"ticker_information": {
"name": "Ticker Information",
"description": "Snapshot of a ticker",
"widgetType": "individual",
"widgetId": "ticker_information",
"category": "Equity",
"gridData": {
"w": 20,
"h": 4
},
"source": ["fmp"]
},
"global_news": {
"name": "Global News",
"description": "News from around the world",
"widgetType": "individual",
"endpoint": "globalNews",
"widgetId": "global_news",
"category": "News",
"gridData": {
"w": 20,
"h": 18
},
"source": ["benzinga"]
},
"charting": {
"name": "Charting",
"description": "Interactive tradingview charting",
"widgetType": "individual",
"widgetId": "charting",
"category": "Others",
"sub_category": "Technical Analysis",
"gridData": {
"w": 40,
"h": 16
},
"source": ["fmp", "intrinio", "fred"]
},
"watchlist": {
"name": "Watchlist",
"description": "Overview of selected assets",
"category": "Others",
"sub_category": "Utils",
"widgetType": "individual",
"widgetId": "watchlist",
"source": ["fmp", "intrinio"]
},
"company_news": {
"name": "Company News",
"description": "Company specific news",
"widgetType": "individual",
"endpoint": "companyNews",
"widgetId": "company_news",
"category": "News",
"gridData": {
"w": 20,
"h": 18
},
"source": ["benzinga"]
},
"company_profile": {
"name": "Company profile",
"description": "Overview of company",
"widgetType": "individual",
"endpoint": "companyProfile",
"widgetId": "company_profile",
"category": "Equity",
"gridData": {
"w": 20,
"h": 16
},
"source": ["fmp"]
},
"price_performance": {
"name": "Price performance",
"description": "Interactive chart for asset price performance",
"widgetType": "individual",
"endpoint": "pricePerformance",
"widgetId": "price_performance",
"category": "Equity",
"sub_category": "Price",
"gridData": {
"w": 20,
"h": 16
},
"source": ["intrinio"]
},
"share_statistics": {
"name": "Share Statistics",
"description": "Company shares for trading",
"widgetType": "individual",
"endpoint": "shareStatistics",
"widgetId": "share_statistics",
"category": "Equity",
"sub_category": "Ownership",
"gridData": {
"w": 10,
"h": 6
},
"source": ["fmp"]
},
"financial_ratios": {
"name": "Financial Ratios",
"description": "Company financial ratios such as P/B, ROE, etc.",
"widgetType": "individual",
"sdkFunc": "useEquityFundamentalMetrics",
"widgetId": "financial_ratios",
"category": "Equity",
"sub_category": "Fundamental Analysis",
"params": {
"with_ttm": true
},
"data": {
"table": {
"enableCharts": true,
"transpose": true,
"period": ["annual", "quarterly", "TTM"],
"showAll": true
}
},
"gridData": {
"w": 40,
"h": 16
},
"source": ["fmp"]
},
"peers_list": {
"name": "Stock Peers",
"description": "Similar companies",
"widgetType": "individual",
"endpoint": "peers",
"widgetId": "peers_list",
"category": "Equity",
"sub_category": "Comparison Analysis",
"gridData": {
"w": 20,
"h": 10
},
"disabled": true
},
"key_metrics": {
"name": "Key Metrics",
"description": "Key financial metrics, such as revenue, P/E, etc.",
"widgetType": "individual",
"endpoint": "companyOutlook",
"widgetId": "key_metrics",
"category": "Equity",
"sub_category": "Fundamental Analysis",
"gridData": {
"w": 20,
"h": 8
},
"source": ["fmp"]
},
"management_team": {
"name": "Management Team",
"description": "Company management team",
"widgetType": "individual",
"sdkFunc": "useEquityFundamentalManagement",
"data": {
"table": {
"enableCharts": true,
"columnsDefs": [
{
"field": "name",
"headerName": "Name",
"chartDataType": "category"
},
{
"field": "title",
"headerName": "Title",
"chartDataType": "excluded"
},
{
"field": "pay",
"headerName": "Compensation"
},
{
"field": "currency_pay",
"headerName": "Currency"
}
]
}
},
"widgetId": "management_team",
"category": "Equity",
"gridData": {
"w": 20,
"h": 14
},
"source": ["fmp"]
},
"revenue_per_geography": {
"name": "Revenue Per Geography",
"description": "Geographical breakdown of company revenue",
"widgetType": "individual",
"defaultViz": "chart",
"sdkFunc": "revenuePerGeog",
"widgetId": "revenue_per_geography",
"category": "Equity",
"sub_category": "Fundamental Analysis",
"gridData": {
"w": 20,
"h": 14
},
"source": ["fmp"]
},
"revenue_per_bus_line": {
"name": "Revenue Per Business Line",
"description": "Revenue breakdown by product category",
"widgetType": "individual",
"defaultViz": "chart",
"sdkFunc": "revenuePerBusLine",
"widgetId": "revenue_per_bus_line",
"category": "Equity",
"sub_category": "Fundamental Analysis",
"gridData": {
"w": 20,
"h": 14
},
"source": ["fmp"]
},
"valuation_multiples": {
"name": "Valuation Multiples",
"description": "Valuation Multiples such as P/E ratio, P/B ratio, etc",
"widgetType": "individual",
"sdkFunc": "useEquityFundamentalMetrics",
"params": {
"with_ttm": true
},
"data": {
"table": {
"period": ["annual", "quarterly", "TTM"],
"enableCharts": true,
"transpose": true,
"columnsDefs": [
{
"headerName": "Date",
"field": "date",
"cellDataType": "date",
"chartDataType": "category",
"maxWidth": 100,
"formatterFn": "dateToYear"
},
{
"headerName": "Period",
"field": "period",
"chartDataType": "category",
"maxWidth": 100
},
{
"headerName": "P/E Ratio",
"field": "pe_ratio"
},
{
"headerName": "P/S Ratio",
"field": "price_to_sales_ratio"
},
{
"headerName": "P/B Ratio",
"field": "pb_ratio"
},
{
"headerName": "EV/Sales Ratio",
"field": "ev_to_sales"
},
{
"headerName": "EV/EBITDA",
"field": "enterprise_value_over_ebitda"
},
{
"headerName": "Dividend Yield",
"field": "dividend_yield"
}
]
}
},
"widgetId": "valuation_multiples",
"category": "Equity",
"sub_category": "Fundamental Analysis",
"gridData": {
"w": 40,
"h": 12
},
"source": ["fmp"]
},
"balance_sheet": {
"name": "Balance Sheet",
"description": "Company Balance Sheet",
"widgetType": "individual",
"sdkFunc": "useEquityFundamentalBalance",
"disabled": true,
"data": {
"table": {
"enableCharts": true,
"transpose": true,
"period": ["annual", "quarterly"],
"columnsDefs": [
{
"headerName": "Date",
"field": "date",
"cellDataType": "date",
"chartDataType": "category",
"maxWidth": 100,
"formatterFn": "none"
},
{
"headerName": "Period",
"field": "period",
"chartDataType": "category",
"maxWidth": 100
},
{
"headerName": "Cash And Cash Equivalents",
"field": "cash_and_cash_equivalents"
},
{
"headerName": "Short Term Investments",
"field": "short_term_investments"
},
{
"headerName": "Cash And Short Term Investments",
"field": "cash_and_short_term_investments"
},
{
"headerName": "Net Receivables",
"field": "net_receivables"
},
{
"headerName": "Inventory",
"field": "inventory"
},
{
"headerName": "Other Current Assets",
"field": "other_current_assets"
},
{
"headerName": "Total Current Assets",
"field": "current_assets"
},
{
"headerName": "Property Plant Equipment Net",
"field": "property_plant_equipment_net"
},
{
"headerName": "Goodwill",
"field": "goodwill"
},
{
"headerName": "Intangible Assets",
"field": "intangible_assets"
},
{
"headerName": "Goodwill And Intangible Assets",
"field": "goodwill_and_intangible_assets"
},
{
"headerName": "Long Term Investments",
"field": "long_term_investments"
},
{
"headerName": "Tax Assets",
"field": "tax_assets"
},
{
"headerName": "Other Non Current Assets",
"field": "other_non_current_assets"
},
{
"headerName": "Total Non Current Assets",
"field": "non_current_assets"
},
{
"headerName": "Other Assets",
"field": "other_assets"
},
{
"headerName": "Total Assets",
"field": "assets"
},
{
"headerName": "Account Payables",
"field": "account_payables"
},
{
"headerName": "Short Term Debt",
"field": "short_term_debt"
},
{
"headerName": "Tax Payables",
"field": "tax_payables"
},
{
"headerName": "Deferred Revenue",
"field": "deferred_revenue"
},
{
"headerName": "Other Current Liabilities",
"field": "other_current_liabilities"
},
{
"headerName": "Total Current Liabilities",
"field": "current_liabilities"
},
{
"headerName": "Long Term Debt",
"field": "long_term_debt"
},
{
"headerName": "Deferred Revenue Non Current",
"field": "deferred_revenue_non_current"
},
{
"headerName": "Deferred Tax Liabilities Non Current",
"field": "deferred_tax_liabilities_non_current"
},
{
"headerName": "Other Non Current Liabilities",
"field": "other_non_current_liabilities"
},
{
"headerName": "Total Non Current Liabilities",
"field": "non_current_liabilities"
},
{
"headerName": "Other Liabilities",
"field": "other_liabilities"
},
{
"headerName": "Capital Lease Obligations",
"field": "capital_lease_obligations"
},
{
"headerName": "Total Liabilities",
"field": "liabilities"
},
{
"headerName": "Preferred Stock",
"field": "preferred_stock"
},
{
"headerName": "Common Stock",
"field": "common_stock"
},
{
"headerName": "Retained Earnings",
"field": "retained_earnings"
},
{
"headerName": "Accumulated Other Comprehensive Income Loss",
"field": "accumulated_other_comprehensive_income_loss"
},
{
"headerName": "Other Stockholders Equity",
"field": "other_stockholder_equity"
},
{
"headerName": "Total Stockholders Equity",
"field": "total_stockholders_equity"
},
{
"headerName": "Total Equity",
"field": "total_equity"
},
{
"headerName": "Total Liabilities And Stockholders Equity",
"field": "total_liabilities_and_stockholders_equity"
},
{
"headerName": "Minority Interest",
"field": "minority_interest"
},
{
"headerName": "Total Liabilities And Total Equity",
"field": "total_liabilities_and_total_equity"
},
{
"headerName": "Total Investments",
"field": "total_investments"
},
{
"headerName": "Total Debt",
"field": "total_debt"
},
{
"headerName": "Net Debt",
"field": "net_debt"
},
{
"headerName": "Source",
"field": "final_link",
"chartDataType": "excluded"
}
]
}
},
"widgetId": "balance_sheet",
"category": "Equity",
"sub_category": "Fundamental Analysis",
"gridData": {
"w": 40,
"h": 16
},
"source": ["intrinio"]
},
"income_statement": {
"name": "Income Statement",
"description": "Company Income Statement",
"widgetType": "individual",
"sdkFunc": "useEquityFundamentalIncome",
"disabled": true,
"data": {
"table": {
"enableCharts": true,
"transpose": true,
"period": ["annual", "quarterly"],
"columnsDefs": [
{
"headerName": "Date",
"field": "date",
"chartDataType": "category",
"cellDataType": "date",
"maxWidth": 100,
"formatterFn": "none"
},
{
"headerName": "Period",
"field": "period",
"chartDataType": "category",
"maxWidth": 100
},
{
"headerName": "Revenue",
"field": "revenue"
},
{
"headerName": "Cost Of Revenue",
"field": "cost_of_revenue"
},
{
"headerName": "Gross Profit",
"field": "gross_profit"
},
{
"headerName": "Gross Profit Ratio",
"field": "gross_profit_ratio",
"formatterFn": "percent"
},
{
"headerName": "Research And Development Expenses",
"field": "research_and_development_expenses"
},
{
"headerName": "General And Administrative Expenses",
"field": "general_and_administrative_expenses"
},
{
"headerName": "Selling And Marketing Expenses",
"field": "selling_and_marketing_expenses"
},
{
"headerName": "Selling General And Administrative Expenses",
"field": "selling_general_and_administrative_expenses"
},
{
"headerName": "Other Expenses",
"field": "other_expenses"
},
{
"headerName": "Operating Expenses",
"field": "operating_expenses"
},
{
"headerName": "Cost And Expenses",
"field": "cost_and_expenses"
},
{
"headerName": "Interest Income",
"field": "interest_income"
},
{
"headerName": "Interest Expense",
"field": "interest_expense"
},
{
"headerName": "Depreciation And Amortization",
"field": "depreciation_and_amortization"
},
{
"headerName": "Ebitda",
"field": "ebitda"
},
{
"headerName": "Ebitda Ratio",
"field": "ebitda_ratio"
},
{
"headerName": "Operating Income",
"field": "operating_income"
},
{
"headerName": "Operating Income Ratio",
"field": "operating_income_ratio"
},
{
"headerName": "Total Other Income Expenses Net",
"field": "total_other_income_expenses_net"
},
{
"headerName": "Income Before Tax",
"field": "income_before_tax"
},
{
"headerName": "Income Before Tax Ratio",
"field": "income_before_tax_ratio"
},
{
"headerName": "Income Tax Expense",
"field": "income_tax_expense"
},
{
"headerName": "Net Income",
"field": "net_income"
},
{
"headerName": "Net Income Ratio",
"field": "net_income_ratio"
},
{
"headerName": "Earnings Per Share",
"field": "eps"
},
{
"headerName": "Earnings Per Share Diluted",
"field": "eps_diluted"
},
{
"headerName": "Weighted Average Shares Outstanding",
"field": "weighted_average_shares_outstanding"
},
{
"headerName": "Weighted Average Shares Outstanding Diluted",
"field": "weighted_average_shares_outstanding_dil"
},
{
"headerName": "Source",
"field": "final_link",
"chartDataType": "excluded"
}
]
}
},
"widgetId": "income_statement",
"category": "Equity",
"sub_category": "Fundamental Analysis",
"gridData": {
"w": 40,
"h": 16
},
"source": ["intrinio"]
},
"cash_flow_statement": {
"name": "Cash Flow Statement",
"description": "Company Cash Flow Statement",
"widgetType": "individual",
"sdkFunc": "useEquityFundamentalCash",
"disabled": true,
"data": {
"table": {
"enableCharts": true,
"period": ["annual", "quarterly"],
"transpose": true,
"columnsDefs": [
{
"headerName": "Date",
"field": "date",
"chartDataType": "category",
"maxWidth": 100,
"formatterFn": "none"
},
{
"headerName": "Period",
"field": "period",
"chartDataType": "category",
"maxWidth": 100
},
{
"headerName": "Net Income",
"field": "net_income"
},
{
"headerName": "Depreciation And Amortization",
"field": "depreciation_and_amortization"
},
{
"headerName": "Deferred Income Tax",
"field": "deferred_income_tax"
},
{
"headerName": "Stock Based Compensation",
"field": "stock_based_compensation"
},
{
"headerName": "Change In Working Capital",
"field": "change_in_working_capital"
},
{
"headerName": "Accounts Receivables",
"field": "accounts_receivables"
},
{
"headerName": "Inventory",
"field": "inventory"
},
{
"headerName": "Accounts Payables",
"field": "accounts_payables"
},
{
"headerName": "Other Working Capital",
"field": "other_working_capital"
},
{
"headerName": "Other Non Cash Items",
"field": "other_non_cash_items"
},
{
"headerName": "Net Cash Flow From Operating Activities",
"field": "net_cash_flow_from_operating_activities"
},
{
"headerName": "Investments In Property Plant And Equipment",
"field": "investments_in_property_plant_and_equipment"
},
{
"headerName": "Acquisitions Net",
"field": "acquisitions_net"
},
{
"headerName": "Purchases Of Investments",
"field": "purchases_of_investments"
},
{
"headerName": "Sales Maturities Of Investments",
"field": "sales_maturities_of_investments"
},
{
"headerName": "Other Investing Activites",
"field": "other_investing_activities"
},
{
"headerName": "Net Cash Used For Investing Activites",
"field": "net_cash_used_for_investing_activities"
},
{
"headerName": "Debt Repayment",
"field": "debt_repayment"
},
{
"headerName": "Common Stock Issued",
"field": "common_stock_issued"
},
{
"headerName": "Common Stock Repurchased",
"field": "common_stock_repurchased"
},
{
"headerName": "Dividends Paid",
"field": "dividends_paid"
},
{
"headerName": "Other Financing Activites",
"field": "other_financing_activities"
},
{
"headerName": "Net Cash Used Provided By Financing Activites",
"field": "net_cash_flow_from_financing_activities"
},
{
"headerName": "Effect Of Forex Changes On Cash",
"field": "effect_of_forex_changes_on_cash"
},
{
"headerName": "Net Change In Cash",
"field": "net_change_in_cash"
},
{
"headerName": "Cash At Beginning Of Period",
"field": "cash_at_beginning_of_period"
},
{
"headerName": "Cash At End Of Period",
"field": "cash_at_end_of_period"
},
{
"headerName": "Operating Cash Flow",
"field": "operating_cash_flow"
},
{
"headerName": "Capital Expenditure",
"field": "capital_expenditure"
},
{
"headerName": "Free Cash Flow",
"field": "free_cash_flow"
},
{
"headerName": "Source",
"field": "final_link",
"chartDataType": "excluded"
}
]
}
},
"widgetId": "cash_flow_statement",
"category": "Equity",
"sub_category": "Fundamental Analysis",
"gridData": {
"w": 40,
"h": 16
},
"source": ["intrinio"]
},
"company_filings": {
"name": "Company Filings",
"description": "Recent Company SEC Filings",
"widgetType": "individual",
"sdkFunc": "useEquityFundamentalFilings",
"data": {
"table": {
"enableCharts": false,
"columnsDefs": [
{
"headerName": "Date",
"field": "filing_date",
"cellDataType": "date",
"chartDataType": "category"
},
{
"headerName": "CIK",
"field": "cik",
"cellDataType": "text",
"chartDataType": "excluded"
},
{
"headerName": "Type",
"field": "report_type"
},
{
"headerName": "Source",
"field": "filing_url",
"chartDataType": "excluded"
}
]
}
},
"widgetId": "company_filings",
"category": "Equity",
"sub_category": "Fundamental Analysis",
"gridData": {
"w": 12,
"h": 14
},
"source": ["fmp"]
},
"price_target": {
"name": "Price Target",
"description": "Chart of analyst price targets with closing price",
"widgetType": "individual",
"defaultViz": "chart",
"sdkFunc": "useEquityEstimatesPriceTarget",
"data": {
"chart": {
"callback": "CreateAnalystsPriceTargetPlot"
}
},
"widgetId": "price_target",
"category": "Equity",
"sub_category": "Analyst Estimates",
"gridData": {
"w": 20,
"h": 8
},
"source": ["fmp"]
},
"analyst_price_target": {
"name": "Price Target By Analyst",
"description": "Analyst Price Targets",
"widgetType": "individual",
"sdkFunc": "useEquityEstimatesPriceTarget",
"widgetId": "analyst_price_target",
"category": "Equity",
"sub_category": "Analyst Estimates",
"data": {
"table": {
"columnsDefs": [
{
"headerName": "Published Date",
"field": "published_date",
"cellDataType": "date",
"chartDataType": "category"
},
{
"headerName": "Analyst Name",
"field": "analyst_name",
"chartDataType": "category"
},
{
"headerName": "Price Target",
"field": "price_target"
},
{
"headerName": "Price When Posted",
"field": "price_when_posted"
},
{
"headerName": "Analyst Company",
"field": "analyst_company",
"chartDataType": "category"
},
{
"headerName": "News URL",
"field": "news_url",
"chartDataType": "excluded"
},
{
"headerName": "News Publisher",
"field": "news_publisher",
"chartDataType": "excluded"
}
]
}
},
"gridData": {
"w": 40,
"h": 16
},
"source": ["fmp"]
},
"analyst_estimates": {
"name": "Analyst Estimates",
"description": "Analyst Estimates",
"widgetType": "individual",
"sdkFunc": "useEquityEstimatesHistorical",
"data": {
"table": {
"period": ["annual", "quarterly"],
"columnsDefs": [
{
"headerName": "Date",
"field": "date",
"cellDataType": "date",
"chartDataType": "category"
},
{
"headerName": "Estimated Revenue Low",
"field": "estimated_revenue_low"
},
{
"headerName": "Estimated Revenue High",
"field": "estimated_revenue_high"
},
{
"headerName": "Estimated Revenue Avg",
"field": "estimated_revenue_avg"
},
{
"headerName": "Estimated EBITDA Low",
"field": "estimated_ebitda_low"
},
{
"headerName": "Estimated EBITDA High",
"field": "estimated_ebitda_high"