Hi all, very new to algorithmic trading/python/etc., so go easy on me :)
Basically I'm trying to make data from my algo match what I'm seeing in my notebook, if possible.
For example, in my notebook, I'm retrieving intraday prices using:
prices = get_pricing(symbol, fields='price', start_date=END_DATE, end_date=END_DATE, frequency='minute').dropna()
In my algo I'm using:
price = data.history(security, fields="price", bar_count=1440, frequency='1m')
But I'm getting different results. I've read a few forum threads about similar issues, but I couldn't find a solution to my problem.