George | 1 Jun 2011 09:17
Picon

Re: Backup log files in .net

QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html
QuickFIX Support: http://www.quickfixengine.org/services.html

George <papasavva2 <at> ...> writes:

> 
> QuickFIX Documentation: 
http://www.quickfixengine.org/quickfix/doc/html/index.html
> QuickFIX Support: http://www.quickfixengine.org/services.html
> 
> Could anyone tell me how to backup the log files in .net
> 
> ------------------------------------------------------------------------------
> Simplify data backup and recovery for your virtual environment with vRanger. 
> Installation's a snap, and flexible recovery options mean your data is safe,
> secure and there when you need it. Data protection magic?
> Nope - It's vRanger. Get your free trial download today. 
> http://p.sf.net/sfu/quest-sfdev2dev
> 

Any news on this issue? Please let me know if there is a configuration mechanism 
for doing this

------------------------------------------------------------------------------
Simplify data backup and recovery for your virtual environment with vRanger. 
Installation's a snap, and flexible recovery options mean your data is safe,
secure and there when you need it. Data protection magic?
Nope - It's vRanger. Get your free trial download today. 
http://p.sf.net/sfu/quest-sfdev2dev
(Continue reading)

Hayyan Rafiq | 1 Jun 2011 12:53
Picon
Favicon

Testing A Custom Initiator ... Suggestions Needed

QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html
QuickFIX Support: http://www.quickfixengine.org/services.html

Hi , I recently started using quick fix and I would like to ask the experts out there a couple of questions. Please bare with me
I recently created an acceptor application (Receives an order and sends an execution report back to the client), I was using the
tradeclient example in the quick fix source as the initiator. Anyways....

I just found out that the trade client example only allows us to place limit orders and does not support other order types
(I really do wonder why ?? since other order options are also present ) what i want to know is suppose that I upgrade and extend the tradeclient so it can also place orders like MARKET,STOP and STOP LIMIT is there any way by which i can test these new ORDER TYPES ? I mean are there any websites out there for testing purposes to see if my newly created client can place orders of types (MARKET,STOP and STOP LIMIT) and the website validates the orders informing me if the orders which i created are correct or incorrect t??

My second question is exactly the opposite of above , I want to find out if there is an initiator(some thing like tradeclient) out there that could place all kind of orders. Since i am also developing an acceptor such a client would also come in handy.

Your suggestions and comments would highly be appreciated..




------------------------------------------------------------------------------
Simplify data backup and recovery for your virtual environment with vRanger. 
Installation's a snap, and flexible recovery options mean your data is safe,
secure and there when you need it. Data protection magic?
Nope - It's vRanger. Get your free trial download today. 
http://p.sf.net/sfu/quest-sfdev2dev
_______________________________________________
Quickfix-developers mailing list
Quickfix-developers@...
https://lists.sourceforge.net/lists/listinfo/quickfix-developers
Pierre El-khoury | 1 Jun 2011 13:17
Picon
Favicon

Generating the Data Dictionary

QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html
QuickFIX Support: http://www.quickfixengine.org/services.html

Hi 
 Any one who knows how to generate the dataDictionary out of repository in QF1.13, I have found a ruby tool
under the spec directory " generate_spec.rb" but it is not working. !!

Best regards 
 Pierre

------------------------------------------------------------------------------
Simplify data backup and recovery for your virtual environment with vRanger. 
Installation's a snap, and flexible recovery options mean your data is safe,
secure and there when you need it. Data protection magic?
Nope - It's vRanger. Get your free trial download today. 
http://p.sf.net/sfu/quest-sfdev2dev
sevzas | 1 Jun 2011 14:34
Picon

Re: Backup log files in .net

QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html
QuickFIX Support: http://www.quickfixengine.org/services.html

You can call backup() on the QuickFix.Log object.  Here's a VB.NET snippet
for getting the Session from the Initiator and getting the Log from the
Session.

        Dim S As QuickFix.Session = myInitiator.getSessions(0)
        Dim L As QuickFix.Log = S.getLog()
        L.backup()

George-187 wrote:
> 
> QuickFIX Documentation:
> http://www.quickfixengine.org/quickfix/doc/html/index.html
> QuickFIX Support: http://www.quickfixengine.org/services.html
> 
> George <papasavva2 <at> ...> writes:
> 
>> 
>> QuickFIX Documentation: 
> http://www.quickfixengine.org/quickfix/doc/html/index.html
>> QuickFIX Support: http://www.quickfixengine.org/services.html
>> 
>> Could anyone tell me how to backup the log files in .net
>> 
>> ------------------------------------------------------------------------------
>> Simplify data backup and recovery for your virtual environment with
>> vRanger. 
>> Installation's a snap, and flexible recovery options mean your data is
(Continue reading)

Kenny Stone | 1 Jun 2011 15:17

Re: Generating the Data Dictionary

QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html
QuickFIX Support: http://www.quickfixengine.org/services.html

There is a generate.sh and generate.bat


It should work.

--
Kenny Stone
Connamara Systems, LLC


On Wed, Jun 1, 2011 at 6:17 AM, Pierre El-khoury <pierree <at> aloc.dk> wrote:
QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html
QuickFIX Support: http://www.quickfixengine.org/services.html


Hi
 Any one who knows how to generate the dataDictionary out of repository in QF1.13, I have found a ruby tool under the spec directory " generate_spec.rb" but it is not working. !!

Best regards
 Pierre


------------------------------------------------------------------------------
Simplify data backup and recovery for your virtual environment with vRanger.
Installation's a snap, and flexible recovery options mean your data is safe,
secure and there when you need it. Data protection magic?
Nope - It's vRanger. Get your free trial download today.
http://p.sf.net/sfu/quest-sfdev2dev
_______________________________________________
Quickfix-developers mailing list
Quickfix-developers-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/quickfix-developers

(Continue reading)

Dominik Brack | 1 Jun 2011 15:36
Picon

Re: Backup log files in .net

QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html
QuickFIX Support: http://www.quickfixengine.org/services.html

Here's an example in C# if you work with multiple sessions

ArrayList sessions = initiator.getSessions(); 
    foreach (var session in sessions) 
    { 
        SessionID sessionId = (SessionID)session; 
        Log logFile = Session.lookupSession(sessionId).getLog(); 
        logFile.backup(); 
    } 
}

On Wednesday, June 1, 2011 at 9:17 AM, George wrote:

QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html
QuickFIX Support: http://www.quickfixengine.org/services.html

George <papasavva2 <at> ...> writes:


QuickFIX Documentation:
http://www.quickfixengine.org/quickfix/doc/html/index.html
QuickFIX Support: http://www.quickfixengine.org/services.html

Could anyone tell me how to backup the log files in .net

------------------------------------------------------------------------------
Simplify data backup and recovery for your virtual environment with vRanger.
Installation's a snap, and flexible recovery options mean your data is safe,
secure and there when you need it. Data protection magic?
Nope - It's vRanger. Get your free trial download today.
http://p.sf.net/sfu/quest-sfdev2dev
(Continue reading)

Pierre El-khoury | 1 Jun 2011 15:48
Picon
Favicon

Re: Generating the Data Dictionary

QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html
QuickFIX Support: http://www.quickfixengine.org/services.html

Hello

Well thanks for replying but as I understand the generating process the generate.bat  (c++,net ,java,ruby) generate the required clases in different languages and generate.sh(generate the MessageCraker for all FIX dialects), where both process counts on the DataDictionary file FIX.#.#.xml (FIX.4.4.xml) file exist. What I real need is how to generate the DataDictionary (FIX4.4.xml)file out of the repository (Enums.xml, Fields.xml,  MessageContents.xml, Components.xml, ..).

Any way I have found out that it is true what I wrote in my first message but there where some syntex error (the “ ’ ” is not accepted)in the file which I have corrected (I have commented it out)and now it worked, so thanks for the response.

 

 

 

Med venlig hilsen / Best regards

Pierre El-khoury
Software Developer
pierree-qWDtiTHrkbI@public.gmane.org / email
+45 6313 6503 / direct tel.


ALOC  WE SIMPLY PROVIDE BETTER OVERVIEW!
¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

ALOC A/S   EDISONSVEJ 1   DK-5000 ODENSE C
+45 6313 6100 / TEL.
 WWW.ALOC.DK

Fra: Kenny Stone [mailto:kstone-NJyyKCDeABCB+jHODAdFcQ@public.gmane.org]
Sendt: 1. juni 2011 15:18
Til: Pierre El-khoury
Cc: quickfix-developers-5NWGOfrQmnfLDRD5uJR0wg@public.gmane.orgeforge.net
Emne: Re: [Quickfix-developers] Generating the Data Dictionary

 

There is a generate.sh and generate.bat

 

It should work.


--
Kenny Stone
Connamara Systems, LLC

On Wed, Jun 1, 2011 at 6:17 AM, Pierre El-khoury <pierree-qWDtiTHrkbI@public.gmane.org> wrote:

QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html
QuickFIX Support: http://www.quickfixengine.org/services.html


Hi
 Any one who knows how to generate the dataDictionary out of repository in QF1.13, I have found a ruby tool under the spec directory " generate_spec.rb" but it is not working. !!

Best regards
 Pierre


------------------------------------------------------------------------------
Simplify data backup and recovery for your virtual environment with vRanger.
Installation's a snap, and flexible recovery options mean your data is safe,
secure and there when you need it. Data protection magic?
Nope - It's vRanger. Get your free trial download today.
http://p.sf.net/sfu/quest-sfdev2dev
_______________________________________________
Quickfix-developers mailing list
Quickfix-developers-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/quickfix-developers

 

------------------------------------------------------------------------------
Simplify data backup and recovery for your virtual environment with vRanger. 
(Continue reading)

Grant Birchmeier | 1 Jun 2011 16:54
Gravatar

Re: Testing A Custom Initiator ... Suggestions Needed

QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html
QuickFIX Support: http://www.quickfixengine.org/services.html

You are thinking about FIX in the wrong way.

FIX is a protocol for transmitting messages.  That's it.  It doesn't
tell you how to send orders, or process orders, or receive market
data, though it does provide message types that can be used to do so.

There is no one correct way to submit or accept an order.  Every
counterparty may require certain fields that others don't, or for
fields to used in certain ways, or for custom fields to be added to
messages.  The default FIX messages are a good baseline, but in
practice, all counterparties have made certain customizations that you
need to find out (from them) in order to trade on their systems.

Thus, the trade client example should be looked at only as an example
of how to send and process messages.  The order messages it sends out
probably won't work on most real-world counterparties.  If you have a
specific counterparty in mind, you should check out their FIX
interface's documentation.

-Grant

On Wed, Jun 1, 2011 at 5:53 AM, Hayyan Rafiq <hayyan85@...> wrote:
> QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html
> QuickFIX Support: http://www.quickfixengine.org/services.html
>
>
> Hi , I recently started using quick fix and I would like to ask the experts out there a couple of questions.
(Continue reading)

Dominik Brack | 1 Jun 2011 18:40
Picon

Re: Testing A Custom Initiator ... Suggestions Needed

QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html
QuickFIX Support: http://www.quickfixengine.org/services.html

If you are looking for a simple tool to simulate a sell-side/broker, take a look at FIXimulator.
It's an OpenSource Project, so you can also go and take a look at the implementation.
Executions are generated either by an automated executor or manually from within the application.

Check it out.

http://fiximulator.org

On Wednesday, June 1, 2011 at 12:53 PM, Hayyan Rafiq wrote:

Hi , I recently started using quick fix and I would like to ask the experts out there a couple of questions. Please bare with me
I recently created an acceptor application (Receives an order and sends an execution report back to the client), I was using the
tradeclient example in the quick fix source as the initiator. Anyways....

I just found out that the trade client example only allows us to place limit orders and does not support other order types
(I really do wonder why ?? since other order options are also present ) what i want to know is suppose that I upgrade and extend the tradeclient so it can also place orders like MARKET,STOP and STOP LIMIT is there any way by which i can test these new ORDER TYPES ? I mean are there any websites out there for testing purposes to see if my newly created client can place orders of types (MARKET,STOP and STOP LIMIT) and the website validates the orders informing me if the orders which i created are correct or incorrect t??

My second question is exactly the opposite of above , I want to find out if there is an initiator(some thing like tradeclient) out there that could place all kind of orders. Since i am also developing an acceptor such a client would also come in handy.

Your suggestions and comments would highly be appreciated..




------------------------------------------------------------------------------
Simplify data backup and recovery for your virtual environment with vRanger.
Installation's a snap, and flexible recovery options mean your data is safe,
secure and there when you need it. Data protection magic?
Nope - It's vRanger. Get your free trial download today.
http://p.sf.net/sfu/quest-sfdev2dev
Max Dmitrichenko | 1 Jun 2011 19:31
Picon

How to use MessageCracker to modify messages

QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html
QuickFIX Support: http://www.quickfixengine.org/services.html

Hi!

This is my first post and first experience with QuickFIX. First of all
I'd like to thank you for doing a great job.

I'm using C++ to write initiator side application. To successfully log
on to the exchange I need to provide Username and Password, but
QuickFIX doesn't do it, so I intercept this message in the
Applocation::toAdmin(). But when I call MessageCracker the
const-version of appropriate onMessage(...) is called, and AFAIK there
is no way to make C++ to call non-const version. Did I miss something?
How then it is supposed to modify messages?

--
Max

------------------------------------------------------------------------------
Simplify data backup and recovery for your virtual environment with vRanger. 
Installation's a snap, and flexible recovery options mean your data is safe,
secure and there when you need it. Data protection magic?
Nope - It's vRanger. Get your free trial download today. 
http://p.sf.net/sfu/quest-sfdev2dev

Gmane