Join the 80,000 other DTN customers who enjoy the fastest, most reliable data available. There is no better value than DTN!

(Move your cursor to this area to pause scrolling)




"If you are serious about your trading I would not rely on IB data for serious daytrading. Took me a while to justify the cost of IQ Feed and in the end, it's just a 2 point stop on ES. Better safe than sorry" - Comment from Public Forum
"I noticed that ******* quotes locked up shortly after the interest rate announcement yesterday while yours stayed stable." - Comment from Ron in Utah
"Everything is working great ! Very impressive client. The news refreshes better and is more pertinent than the ******* feed I paid $ 100/month for. I Also like the charts a lot." - Comment from Leon
"I am very happy I changed. I love the product, but more so I am thrilled with Tech Support. You are knowledgeable, polite, pleasant and professional." - Comment from Pat
"I just wanted to say how happy I am with your service. I was able to download the API docs last week and I was able to replicate Interactive Brokers historical bar queries and realtime bar queries over the weekend. That was about one of the fastest integrations that I've ever done and it works perfectly!!!!" - Comment from Jason via Email
"I use IQ Feed, Great stuff as far as data analysis information, storage and retrieval is concerned." - Comment from Public Forum
"Thank you so much - awesome feed, awesome service!" - Comment from Greg via Email
"My broker in Davenport suggested I give you a try as he uses your service and says its the best." - Comment from Bill via RT Chat
"Version 4.0.0.2 has been working well for me and I appreciate that it is now a much tighter client to work with. I feel I can go to press with my own application and rely on a stable platform" - Comment from David in IA.
"Thanks for following up with me. You guys do a great job in tech support." - Comment from Phelps
Home  Search  Register  Login  Recent Posts

Information on DTN's Industries:
DTN Oil & Gas | DTN Trading | DTN Agriculture | DTN Weather
Follow DTNMarkets on Twitter
DTN.IQ/IQFeed on Twitter
DTN News and Analysis on Twitter
»Forums Index »Archive (2017 and earlier) »IQFeed Developer Support »We don't need RegisterClientApp anymore
Author Topic: We don't need RegisterClientApp anymore (3 messages, Page 1 of 1)

CBrauer
-Interested User-
Posts: 32
Joined: Aug 18, 2004


Posted: Feb 13, 2010 06:11 PM          Msg. 1 of 3
In the last email announcing the new release it said that IQ32.dll was depreciated and would eventually be removed. I thought to myself "If that's so, how do we do RegisterClientApp?" The answer is we don't. It is not needed anymore.

Here is a console application built with Visual Studio 2008. It is in C#:

using System;
using System.IO;
using System.Net.Sockets;

namespace Fundamentals {
class Fundamentals {
StreamReader streamReader;
NetworkStream IQStream;
TcpClient socket;

private void Run() {
Int32 portNumber = 5009;
try {
socket = new TcpClient("localhost", portNumber);
Console.WriteLine("socket has been initialized.");
} catch (Exception ex) {
Console.WriteLine("Error: " + ex.Message);
return;
}

DownloadFundamentals("IBM");
Console.WriteLine("Done.");
}

private void DownloadFundamentals(string sSymbol) {
try {
IQStream = socket.GetStream();
streamReader = new StreamReader(IQStream);

string quoteString = "w" + sSymbol + "\n\r";
byte[] outputBuffer = System.Text.Encoding.ASCII.GetBytes(quoteString);
socket.GetStream().Write(outputBuffer, 0, outputBuffer.Length);
socket.GetStream().Flush();

string data = streamReader.ReadLine();
while (data.IndexOf("!ENDMSG!") < 0) {
if (data.Length > 0) {
if (data.IndexOf("..SYNTAX_ERROR..") < 0) {
if (data[0] == 'F') {
Console.WriteLine("Data: " + data);
return;
}
} else {
Console.WriteLine("Error: " + data);
}
}
data = streamReader.ReadLine();
}
return;
} catch (IOException ex) {
Console.WriteLine("DownloadFundamentals error: " + ex.Message);
}
return;
}

static void Main(string[] args) {
Fundamentals go = new Fundamentals();
go.Run();
Console.ReadKey();
}
}
}

I hope this helps.

Charles

Charles Brauer
CBrauer@CypressPoint.com

DTN_Steve_S
-DTN Guru-
Posts: 2093
Joined: Nov 21, 2005


Posted: Feb 15, 2010 10:45 AM          Msg. 2 of 3
Hello Charles, you are correct that with the current version of IQFeed, as long as the feed is already running, it is not absolutely required to call RegisterClientApp anymore. However, as I'm sure you are aware, the code posted above will not launch the feed. Furthermore, the feed must be initialized with a productID and version number (by any of the current methods) upon initial launch before it will allow any connections for data retrieval.

We also recommend that before any client connects to the feed, that you first register with the feed (even if it is already running and not absolutely required). Doing so will reduce the likelyhood that your app will break with future versions of the feed.

CBrauer
-Interested User-
Posts: 32
Joined: Aug 18, 2004


Posted: Feb 15, 2010 11:20 AM          Msg. 3 of 3
I'm aware that my example code does not launch the feed. I do that elsewhere. You said that IQ32.dll is depreciated. In the past I did:

[DllImport("C:\\Program Files\\DTN\\IQFeed\\IQ32.dll")]
public static extern int RegisterClientApp(
IntPtr hClient,
string szProductName,
string szProductKey,
string szProductVersion);

and I used RegisterClientApp. As I mentioned before, if IQ32.dll is no longer available (in future releases), and if you say that we still need to do RegisterClientApp, then how do we do that.

Some sample code would be greatly appreciated.

Thanks

Charles

Charles Brauer
CBrauer@CypressPoint.com
 

 

Time: Thu May 2, 2024 5:40 PM CFBB v1.2.0 11 ms.
© AderSoftware 2002-2003