Hi,
I try to understand where are the fundamentals data coming from. Maybe I am missing something, but it looks to me the values are not correct.
See below an example for Apple on 1-march-2016. According to fundamental query EBIT,EV/EBITDA,ROIC was 24bln, 6.5471, 9.79%.
But the real values are completely different: 72bln, 7, 37%.
EV/EBITDA might be ok, but the other 2 does not make any sense to me. Any idea ?
import numpy as np
import pandas as pd
start_date = '2016-03-01'
end_date = '2016-03-01'
fundamentals = init_fundamentals()
data = get_fundamentals(query(fundamentals.income_statement.ebit, fundamentals.valuation_ratios.ev_to_ebitda, fundamentals.operation_ratios.roic), end_date).T
print(data)
ebit ev_to_ebitda roic
Equity(2 [AA]) -391000000 9.2596 -0.016897
Equity(21 [AAME]) 726000 11.9719 0.006430
Equity(24 [AAPL]) 24171000000 6.5471 0.097913
Krzysztof