I'm using IB APIs but its GetHistoryData() limits 60 times in 10 mins. Is there different way to get last day's close price?
using TradeLink.API;
using TradeLink.Common;
class Program
{
static void Main(string[] args)
{
// the DayFrom* methods get daily bar data (eg 1year) from respective provider
BarList google = BarListImpl.DayFromGoogle("SPY");
BarList yahoo = BarListImpl.DayFromYahoo("SPY");
if (google.RecentBar.Close==yahoo.RecentBar.Close)
Console.WriteLine("SPY close: "+google.RecentBar.Close);
else
Console.WriteLine("spy closing price mismatch.");
}
}