Thanks @sujith .
What is the throttling limit of the historic API? Of course i understand that its not for fetching data per second. How frequent we can query to it for fresh data?
Its a great news. I was just looking at other broker for free historic data or with minimal cost. Thanks for making historic api free.
Can you please show me where can I find documentation for C# historic API?
@tonystark This is the code I wrote in C#:
public static double CalculateRsi(IEnumerable closePrices, int interval)
{
var prices = closePrices as double[] ?? closePrices.ToArray();
double sumGain = 0;
…