I fetch the close prices using diferent methods and i dont get the same output.
One method was get_pricing()
get_pricing_close = get_pricing(symbols('AAPL'), start_date=startDay, end_date=endDay).close_price
The other was trougth the pipeline
USclose= USEquityPricing.close.latest
return Pipeline(
columns={ 'USEquityPricing.close': USclose}
)
And the third one is the yahoo finance close price.
I dont get what is going on.