Re: [Quickfix-developers] Trading Client help
Brought to you by:
orenmnero
From: derekldn <der...@gm...> - 2008-08-29 11:16:52
|
I'm also a newbie on FIX. I'll try to answer some of your questions, but the answers may not be correct. > 1) do i need application.run function to get execute logon logout messages > You don't have to. Application.run only prompts what request you want to execute. I think if you make the main thread wait for a while, for example replace application.run with FIX::process_sleep(10), you will get logon and logout message. > 2) how do i get new order single report or execution report > I think you should send a request somehow. The incoming report will trigger Application.onMessage(FIX42::ExecutionReport&, const FIX::SessionID& ) depending on the FIX version you are using. > 5) where do i get the log. > As you can see, the tradeclient example uses ScreenLogFactory which create ScreenLog object. You can either redirect the output to a file, change the std::cout in ScreenLog, or write your own Log class. -- View this message in context: http://www.nabble.com/Trading-Client-help-tp19202061p19218009.html Sent from the QuickFIX - Dev mailing list archive at Nabble.com. |