I am attempting to display the live data into "real time quotes window"
So I did override the method"GetRecentInfo(string ticker)" then Amibroker called this method, but I cant return RecentInfo data to Amibroker.
I did found the GetRecent format, no where that was.
The format I did
public static void GetRecentInfo(string ticker)
{
RecentInfo rc = new RecentInfo();
.....
}
and
public static void GetRecentInfo(string ticker, out RecentInfo)
{
rc = new RecentInfo();
.....
}
public static RecentInfoGetRecentInfo(string ticker)
{
RecentInfo rc = new RecentInfo();
...
return rc
}
I am attempting to display the live data into "real time quotes window" So I did override the method"GetRecentInfo(string ticker)" then Amibroker called this method, but I cant return RecentInfo data to Amibroker. I did found the GetRecent format, no where that was.
The format I did
public static void GetRecentInfo(string ticker) { RecentInfo rc = new RecentInfo(); ..... } and public static void GetRecentInfo(string ticker, out RecentInfo)
{ rc = new RecentInfo(); ..... }
public static RecentInfo GetRecentInfo(string ticker)
{ RecentInfo rc = new RecentInfo(); ... return rc }
I hope you to give advises.