-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathticker_utils.go
More file actions
503 lines (472 loc) · 21.6 KB
/
Copy pathticker_utils.go
File metadata and controls
503 lines (472 loc) · 21.6 KB
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
package yfinance_api
import (
"strings"
"time"
)
// transformFinancialData converts Yahoo Finance API response into structured FinancialData
func (t *Ticker) transformFinancialData(result struct {
DefaultKeyStatistics *FinancialSummary `json:"defaultKeyStatistics"`
FinancialData *FinancialRatios `json:"financialData"`
SummaryDetail *struct {
MarketCap *PriceValue `json:"marketCap"`
ForwardPE *PriceValue `json:"forwardPE"`
TrailingPE *PriceValue `json:"trailingPE"`
PriceToSalesTrailing12Months *PriceValue `json:"priceToSalesTrailing12Months"`
PriceToBook *PriceValue `json:"priceToBook"`
Beta *PriceValue `json:"beta"`
DividendRate *PriceValue `json:"dividendRate"`
DividendYield *PriceValue `json:"dividendYield"`
} `json:"summaryDetail"`
IncomeStatementHistory *struct {
IncomeStatementHistory []struct {
EndDate *PriceValue `json:"endDate"`
TotalRevenue *PriceValue `json:"totalRevenue"`
GrossProfit *PriceValue `json:"grossProfit"`
OperatingIncome *PriceValue `json:"operatingIncome"`
NetIncome *PriceValue `json:"netIncome"`
Ebitda *PriceValue `json:"ebitda"`
} `json:"incomeStatementHistory"`
} `json:"incomeStatementHistory"`
BalanceSheetHistory *struct {
BalanceSheetStatements []struct {
EndDate *PriceValue `json:"endDate"`
TotalAssets *PriceValue `json:"totalAssets"`
TotalLiab *PriceValue `json:"totalLiab"`
TotalStockholderEquity *PriceValue `json:"totalStockholderEquity"`
TotalDebt *PriceValue `json:"totalDebt"`
Cash *PriceValue `json:"cash"`
} `json:"balanceSheetStatements"`
} `json:"balanceSheetHistory"`
CashflowStatementHistory *struct {
CashflowStatements []struct {
EndDate *PriceValue `json:"endDate"`
TotalCashFromOperatingActivities *PriceValue `json:"totalCashFromOperatingActivities"`
CapitalExpenditures *PriceValue `json:"capitalExpenditures"`
FreeCashFlow *PriceValue `json:"freeCashFlow"`
DividendsPaid *PriceValue `json:"dividendsPaid"`
} `json:"cashflowStatements"`
} `json:"cashflowStatementHistory"`
}) FinancialData {
return FinancialData{
Ratios: t.extractFinancialRatios(result),
Summary: t.extractFinancialSummary(result),
IncomeStatement: t.extractIncomeStatement(result),
BalanceSheet: t.extractBalanceSheet(result),
CashFlow: t.extractCashFlow(result),
}
}
// extractFinancialRatios extracts financial ratios from the API response
func (t *Ticker) extractFinancialRatios(result struct {
DefaultKeyStatistics *FinancialSummary `json:"defaultKeyStatistics"`
FinancialData *FinancialRatios `json:"financialData"`
SummaryDetail *struct {
MarketCap *PriceValue `json:"marketCap"`
ForwardPE *PriceValue `json:"forwardPE"`
TrailingPE *PriceValue `json:"trailingPE"`
PriceToSalesTrailing12Months *PriceValue `json:"priceToSalesTrailing12Months"`
PriceToBook *PriceValue `json:"priceToBook"`
Beta *PriceValue `json:"beta"`
DividendRate *PriceValue `json:"dividendRate"`
DividendYield *PriceValue `json:"dividendYield"`
} `json:"summaryDetail"`
IncomeStatementHistory *struct {
IncomeStatementHistory []struct {
EndDate *PriceValue `json:"endDate"`
TotalRevenue *PriceValue `json:"totalRevenue"`
GrossProfit *PriceValue `json:"grossProfit"`
OperatingIncome *PriceValue `json:"operatingIncome"`
NetIncome *PriceValue `json:"netIncome"`
Ebitda *PriceValue `json:"ebitda"`
} `json:"incomeStatementHistory"`
} `json:"incomeStatementHistory"`
BalanceSheetHistory *struct {
BalanceSheetStatements []struct {
EndDate *PriceValue `json:"endDate"`
TotalAssets *PriceValue `json:"totalAssets"`
TotalLiab *PriceValue `json:"totalLiab"`
TotalStockholderEquity *PriceValue `json:"totalStockholderEquity"`
TotalDebt *PriceValue `json:"totalDebt"`
Cash *PriceValue `json:"cash"`
} `json:"balanceSheetStatements"`
} `json:"balanceSheetHistory"`
CashflowStatementHistory *struct {
CashflowStatements []struct {
EndDate *PriceValue `json:"endDate"`
TotalCashFromOperatingActivities *PriceValue `json:"totalCashFromOperatingActivities"`
CapitalExpenditures *PriceValue `json:"capitalExpenditures"`
FreeCashFlow *PriceValue `json:"freeCashFlow"`
DividendsPaid *PriceValue `json:"dividendsPaid"`
} `json:"cashflowStatements"`
} `json:"cashflowStatementHistory"`
}) FinancialRatios {
ratios := FinancialRatios{}
// Extract from SummaryDetail
if result.SummaryDetail != nil {
ratios.PriceToEarningsRatio = result.SummaryDetail.TrailingPE
ratios.PriceToBookRatio = result.SummaryDetail.PriceToBook
ratios.PriceToSalesRatio = result.SummaryDetail.PriceToSalesTrailing12Months
ratios.DividendRate = result.SummaryDetail.DividendRate
ratios.DividendYield = result.SummaryDetail.DividendYield
}
// Extract from FinancialData if available
if result.FinancialData != nil {
ratios.ReturnOnEquity = result.FinancialData.ReturnOnEquity
ratios.ReturnOnAssets = result.FinancialData.ReturnOnAssets
ratios.GrossMargins = result.FinancialData.GrossMargins
ratios.EbitdaMargins = result.FinancialData.EbitdaMargins
ratios.OperatingMargins = result.FinancialData.OperatingMargins
ratios.ProfitMargins = result.FinancialData.ProfitMargins
ratios.CurrentRatio = result.FinancialData.CurrentRatio
ratios.QuickRatio = result.FinancialData.QuickRatio
ratios.DebtToEquity = result.FinancialData.DebtToEquity
ratios.TotalDebtToCapital = result.FinancialData.TotalDebtToCapital
ratios.EarningsGrowth = result.FinancialData.EarningsGrowth
ratios.RevenueGrowth = result.FinancialData.RevenueGrowth
ratios.EarningsPerShare = result.FinancialData.EarningsPerShare
ratios.BookValuePerShare = result.FinancialData.BookValuePerShare
}
// Extract from DefaultKeyStatistics if available
if result.DefaultKeyStatistics != nil {
if ratios.PriceToEarningsRatio == nil {
ratios.PriceToEarningsRatio = result.DefaultKeyStatistics.TrailingPE
}
if ratios.PriceToBookRatio == nil {
ratios.PriceToBookRatio = result.DefaultKeyStatistics.PriceToBook
}
}
return ratios
}
// extractFinancialSummary extracts financial summary data from the API response
func (t *Ticker) extractFinancialSummary(result struct {
DefaultKeyStatistics *FinancialSummary `json:"defaultKeyStatistics"`
FinancialData *FinancialRatios `json:"financialData"`
SummaryDetail *struct {
MarketCap *PriceValue `json:"marketCap"`
ForwardPE *PriceValue `json:"forwardPE"`
TrailingPE *PriceValue `json:"trailingPE"`
PriceToSalesTrailing12Months *PriceValue `json:"priceToSalesTrailing12Months"`
PriceToBook *PriceValue `json:"priceToBook"`
Beta *PriceValue `json:"beta"`
DividendRate *PriceValue `json:"dividendRate"`
DividendYield *PriceValue `json:"dividendYield"`
} `json:"summaryDetail"`
IncomeStatementHistory *struct {
IncomeStatementHistory []struct {
EndDate *PriceValue `json:"endDate"`
TotalRevenue *PriceValue `json:"totalRevenue"`
GrossProfit *PriceValue `json:"grossProfit"`
OperatingIncome *PriceValue `json:"operatingIncome"`
NetIncome *PriceValue `json:"netIncome"`
Ebitda *PriceValue `json:"ebitda"`
} `json:"incomeStatementHistory"`
} `json:"incomeStatementHistory"`
BalanceSheetHistory *struct {
BalanceSheetStatements []struct {
EndDate *PriceValue `json:"endDate"`
TotalAssets *PriceValue `json:"totalAssets"`
TotalLiab *PriceValue `json:"totalLiab"`
TotalStockholderEquity *PriceValue `json:"totalStockholderEquity"`
TotalDebt *PriceValue `json:"totalDebt"`
Cash *PriceValue `json:"cash"`
} `json:"balanceSheetStatements"`
} `json:"balanceSheetHistory"`
CashflowStatementHistory *struct {
CashflowStatements []struct {
EndDate *PriceValue `json:"endDate"`
TotalCashFromOperatingActivities *PriceValue `json:"totalCashFromOperatingActivities"`
CapitalExpenditures *PriceValue `json:"capitalExpenditures"`
FreeCashFlow *PriceValue `json:"freeCashFlow"`
DividendsPaid *PriceValue `json:"dividendsPaid"`
} `json:"cashflowStatements"`
} `json:"cashflowStatementHistory"`
}) FinancialSummary {
summary := FinancialSummary{}
// Prioritize DefaultKeyStatistics
if result.DefaultKeyStatistics != nil {
summary = *result.DefaultKeyStatistics
}
// Override/supplement with SummaryDetail data
if result.SummaryDetail != nil {
if summary.MarketCap == nil {
summary.MarketCap = result.SummaryDetail.MarketCap
}
if summary.ForwardPE == nil {
summary.ForwardPE = result.SummaryDetail.ForwardPE
}
if summary.TrailingPE == nil {
summary.TrailingPE = result.SummaryDetail.TrailingPE
}
if summary.PriceToSalesTrailing12Months == nil {
summary.PriceToSalesTrailing12Months = result.SummaryDetail.PriceToSalesTrailing12Months
}
if summary.PriceToBook == nil {
summary.PriceToBook = result.SummaryDetail.PriceToBook
}
if summary.Beta == nil {
summary.Beta = result.SummaryDetail.Beta
}
}
return summary
}
// extractIncomeStatement extracts the latest income statement data
func (t *Ticker) extractIncomeStatement(result struct {
DefaultKeyStatistics *FinancialSummary `json:"defaultKeyStatistics"`
FinancialData *FinancialRatios `json:"financialData"`
SummaryDetail *struct {
MarketCap *PriceValue `json:"marketCap"`
ForwardPE *PriceValue `json:"forwardPE"`
TrailingPE *PriceValue `json:"trailingPE"`
PriceToSalesTrailing12Months *PriceValue `json:"priceToSalesTrailing12Months"`
PriceToBook *PriceValue `json:"priceToBook"`
Beta *PriceValue `json:"beta"`
DividendRate *PriceValue `json:"dividendRate"`
DividendYield *PriceValue `json:"dividendYield"`
} `json:"summaryDetail"`
IncomeStatementHistory *struct {
IncomeStatementHistory []struct {
EndDate *PriceValue `json:"endDate"`
TotalRevenue *PriceValue `json:"totalRevenue"`
GrossProfit *PriceValue `json:"grossProfit"`
OperatingIncome *PriceValue `json:"operatingIncome"`
NetIncome *PriceValue `json:"netIncome"`
Ebitda *PriceValue `json:"ebitda"`
} `json:"incomeStatementHistory"`
} `json:"incomeStatementHistory"`
BalanceSheetHistory *struct {
BalanceSheetStatements []struct {
EndDate *PriceValue `json:"endDate"`
TotalAssets *PriceValue `json:"totalAssets"`
TotalLiab *PriceValue `json:"totalLiab"`
TotalStockholderEquity *PriceValue `json:"totalStockholderEquity"`
TotalDebt *PriceValue `json:"totalDebt"`
Cash *PriceValue `json:"cash"`
} `json:"balanceSheetStatements"`
} `json:"balanceSheetHistory"`
CashflowStatementHistory *struct {
CashflowStatements []struct {
EndDate *PriceValue `json:"endDate"`
TotalCashFromOperatingActivities *PriceValue `json:"totalCashFromOperatingActivities"`
CapitalExpenditures *PriceValue `json:"capitalExpenditures"`
FreeCashFlow *PriceValue `json:"freeCashFlow"`
DividendsPaid *PriceValue `json:"dividendsPaid"`
} `json:"cashflowStatements"`
} `json:"cashflowStatementHistory"`
}) IncomeStatement {
income := IncomeStatement{}
if result.IncomeStatementHistory != nil && len(result.IncomeStatementHistory.IncomeStatementHistory) > 0 {
// Get the most recent income statement (first in the array)
latest := result.IncomeStatementHistory.IncomeStatementHistory[0]
income.TotalRevenue = latest.TotalRevenue
income.GrossProfit = latest.GrossProfit
income.OperatingIncome = latest.OperatingIncome
income.NetIncome = latest.NetIncome
income.Ebitda = latest.Ebitda
}
// Add EPS data from financial ratios if available
if result.FinancialData != nil {
income.EarningsPerShare = result.FinancialData.EarningsPerShare
}
return income
}
// extractBalanceSheet extracts the latest balance sheet data
func (t *Ticker) extractBalanceSheet(result struct {
DefaultKeyStatistics *FinancialSummary `json:"defaultKeyStatistics"`
FinancialData *FinancialRatios `json:"financialData"`
SummaryDetail *struct {
MarketCap *PriceValue `json:"marketCap"`
ForwardPE *PriceValue `json:"forwardPE"`
TrailingPE *PriceValue `json:"trailingPE"`
PriceToSalesTrailing12Months *PriceValue `json:"priceToSalesTrailing12Months"`
PriceToBook *PriceValue `json:"priceToBook"`
Beta *PriceValue `json:"beta"`
DividendRate *PriceValue `json:"dividendRate"`
DividendYield *PriceValue `json:"dividendYield"`
} `json:"summaryDetail"`
IncomeStatementHistory *struct {
IncomeStatementHistory []struct {
EndDate *PriceValue `json:"endDate"`
TotalRevenue *PriceValue `json:"totalRevenue"`
GrossProfit *PriceValue `json:"grossProfit"`
OperatingIncome *PriceValue `json:"operatingIncome"`
NetIncome *PriceValue `json:"netIncome"`
Ebitda *PriceValue `json:"ebitda"`
} `json:"incomeStatementHistory"`
} `json:"incomeStatementHistory"`
BalanceSheetHistory *struct {
BalanceSheetStatements []struct {
EndDate *PriceValue `json:"endDate"`
TotalAssets *PriceValue `json:"totalAssets"`
TotalLiab *PriceValue `json:"totalLiab"`
TotalStockholderEquity *PriceValue `json:"totalStockholderEquity"`
TotalDebt *PriceValue `json:"totalDebt"`
Cash *PriceValue `json:"cash"`
} `json:"balanceSheetStatements"`
} `json:"balanceSheetHistory"`
CashflowStatementHistory *struct {
CashflowStatements []struct {
EndDate *PriceValue `json:"endDate"`
TotalCashFromOperatingActivities *PriceValue `json:"totalCashFromOperatingActivities"`
CapitalExpenditures *PriceValue `json:"capitalExpenditures"`
FreeCashFlow *PriceValue `json:"freeCashFlow"`
DividendsPaid *PriceValue `json:"dividendsPaid"`
} `json:"cashflowStatements"`
} `json:"cashflowStatementHistory"`
}) BalanceSheet {
balance := BalanceSheet{}
if result.BalanceSheetHistory != nil && len(result.BalanceSheetHistory.BalanceSheetStatements) > 0 {
// Get the most recent balance sheet (first in the array)
latest := result.BalanceSheetHistory.BalanceSheetStatements[0]
balance.TotalAssets = latest.TotalAssets
balance.TotalLiabilities = latest.TotalLiab
balance.TotalEquity = latest.TotalStockholderEquity
balance.TotalDebt = latest.TotalDebt
balance.Cash = latest.Cash
}
// Add book value per share from financial ratios if available
if result.FinancialData != nil {
balance.BookValuePerShare = result.FinancialData.BookValuePerShare
}
return balance
}
// extractCashFlow extracts the latest cash flow statement data
func (t *Ticker) extractCashFlow(result struct {
DefaultKeyStatistics *FinancialSummary `json:"defaultKeyStatistics"`
FinancialData *FinancialRatios `json:"financialData"`
SummaryDetail *struct {
MarketCap *PriceValue `json:"marketCap"`
ForwardPE *PriceValue `json:"forwardPE"`
TrailingPE *PriceValue `json:"trailingPE"`
PriceToSalesTrailing12Months *PriceValue `json:"priceToSalesTrailing12Months"`
PriceToBook *PriceValue `json:"priceToBook"`
Beta *PriceValue `json:"beta"`
DividendRate *PriceValue `json:"dividendRate"`
DividendYield *PriceValue `json:"dividendYield"`
} `json:"summaryDetail"`
IncomeStatementHistory *struct {
IncomeStatementHistory []struct {
EndDate *PriceValue `json:"endDate"`
TotalRevenue *PriceValue `json:"totalRevenue"`
GrossProfit *PriceValue `json:"grossProfit"`
OperatingIncome *PriceValue `json:"operatingIncome"`
NetIncome *PriceValue `json:"netIncome"`
Ebitda *PriceValue `json:"ebitda"`
} `json:"incomeStatementHistory"`
} `json:"incomeStatementHistory"`
BalanceSheetHistory *struct {
BalanceSheetStatements []struct {
EndDate *PriceValue `json:"endDate"`
TotalAssets *PriceValue `json:"totalAssets"`
TotalLiab *PriceValue `json:"totalLiab"`
TotalStockholderEquity *PriceValue `json:"totalStockholderEquity"`
TotalDebt *PriceValue `json:"totalDebt"`
Cash *PriceValue `json:"cash"`
} `json:"balanceSheetStatements"`
} `json:"balanceSheetHistory"`
CashflowStatementHistory *struct {
CashflowStatements []struct {
EndDate *PriceValue `json:"endDate"`
TotalCashFromOperatingActivities *PriceValue `json:"totalCashFromOperatingActivities"`
CapitalExpenditures *PriceValue `json:"capitalExpenditures"`
FreeCashFlow *PriceValue `json:"freeCashFlow"`
DividendsPaid *PriceValue `json:"dividendsPaid"`
} `json:"cashflowStatements"`
} `json:"cashflowStatementHistory"`
}) CashFlow {
cashflow := CashFlow{}
if result.CashflowStatementHistory != nil && len(result.CashflowStatementHistory.CashflowStatements) > 0 {
// Get the most recent cash flow statement (first in the array)
latest := result.CashflowStatementHistory.CashflowStatements[0]
cashflow.OperatingCashFlow = latest.TotalCashFromOperatingActivities
cashflow.CapitalExpenditures = latest.CapitalExpenditures
cashflow.FreeCashFlow = latest.FreeCashFlow
cashflow.DividendsPaid = latest.DividendsPaid
}
return cashflow
}
// transformHistoricalData converts YahooHistoryResponse into a map of PriceData keyed by date/time
func transformHistoricalData(data YahooHistoryResponse, interval string) map[string]PriceData {
d := make(map[string]PriceData)
if len(data.Chart.Result) == 0 {
return d
}
result := data.Chart.Result[0]
for i, timestamp := range result.Timestamp {
t := time.Unix(timestamp, 0)
var key string
if strings.HasSuffix(interval, "d") || strings.HasSuffix(interval, "wk") || strings.HasSuffix(interval, "mo") {
key = t.Format("2006-01-02")
} else {
key = t.Format("2006-01-02 15:04:05")
}
// Ensure we have quote data
if len(result.Indicators.Quote) > 0 {
quote := result.Indicators.Quote[0]
// Check bounds to avoid index out of range
if i < len(quote.Open) && i < len(quote.High) && i < len(quote.Low) && i < len(quote.Close) && i < len(quote.Volume) {
d[key] = PriceData{
Open: quote.Open[i],
High: quote.High[i],
Low: quote.Low[i],
Close: quote.Close[i],
Volume: quote.Volume[i],
}
}
}
}
return d
}
// extractDividendInfo extracts dividend information from the API response
func (t *Ticker) extractDividendInfo(result struct {
SummaryDetail *struct {
DividendRate *PriceValue `json:"dividendRate"`
DividendYield *PriceValue `json:"dividendYield"`
ExDividendDate *PriceValue `json:"exDividendDate"`
DividendDate *PriceValue `json:"dividendDate"`
PayoutRatio *PriceValue `json:"payoutRatio"`
FiveYearAvgDividendYield *PriceValue `json:"fiveYearAvgDividendYield"`
} `json:"summaryDetail"`
DefaultKeyStatistics *struct {
DividendRate *PriceValue `json:"dividendRate"`
DividendYield *PriceValue `json:"dividendYield"`
PayoutRatio *PriceValue `json:"payoutRatio"`
FiveYearAvgDividendYield *PriceValue `json:"fiveYearAvgDividendYield"`
} `json:"defaultKeyStatistics"`
CashflowStatementHistory *struct {
CashflowStatements []struct {
DividendsPaid *PriceValue `json:"dividendsPaid"`
} `json:"cashflowStatements"`
} `json:"cashflowStatementHistory"`
}) DividendInfo {
dividend := DividendInfo{}
// Prioritize SummaryDetail data
if result.SummaryDetail != nil {
dividend.DividendRate = result.SummaryDetail.DividendRate
dividend.DividendYield = result.SummaryDetail.DividendYield
dividend.ExDividendDate = result.SummaryDetail.ExDividendDate
dividend.DividendDate = result.SummaryDetail.DividendDate
dividend.PayoutRatio = result.SummaryDetail.PayoutRatio
dividend.FiveYearAvgDividendYield = result.SummaryDetail.FiveYearAvgDividendYield
}
// Fallback to DefaultKeyStatistics if SummaryDetail is missing data
if result.DefaultKeyStatistics != nil {
if dividend.DividendRate == nil {
dividend.DividendRate = result.DefaultKeyStatistics.DividendRate
}
if dividend.DividendYield == nil {
dividend.DividendYield = result.DefaultKeyStatistics.DividendYield
}
if dividend.PayoutRatio == nil {
dividend.PayoutRatio = result.DefaultKeyStatistics.PayoutRatio
}
if dividend.FiveYearAvgDividendYield == nil {
dividend.FiveYearAvgDividendYield = result.DefaultKeyStatistics.FiveYearAvgDividendYield
}
}
// Get dividends paid from cash flow statements
if result.CashflowStatementHistory != nil && len(result.CashflowStatementHistory.CashflowStatements) > 0 {
// Get the most recent cash flow statement
latest := result.CashflowStatementHistory.CashflowStatements[0]
dividend.DividendsPaid = latest.DividendsPaid
}
return dividend
}