Search results

  1. C

    ANVIL API (Assent) Developer Thread

    I do not the answer to it but I suspect you can either: - Enter a value in the Anvil.ini. like Passsowrd=.... - A User/Pass paramater to Anvil.exe command.
  2. C

    ANVIL API (Assent) Developer Thread

    I do not know if you tried this but once the service is running, try digging into the loaded dlls using the old listdlls from Mark R. http://www.microsoft.com/technet/sysinternals/ProcessesAndThreads/ListDlls.mspx
  3. C

    ANVIL API (Assent) Developer Thread

    I did not see this posting earlier. Loading the dll: Could it be becasue the service working folder is system32 ? To debug you could start the service and "attach" to the process for debugging. Just wondering, what account are you running the service ?
  4. C

    ANVIL API (Assent) Developer Thread

    Has anyone been noticing these msgs form the account observeable ? MSGID_CONNECTION_FAILED MSGID_CONNECTION_STARTED FAILED seems to happen every 20 seconds after STARTED. Once FAILED is received, it taked 4 seconds to get the STARTED one. The funny thing is that most time than not...
  5. C

    Anvil problems this morning?

    I heard quotes were slow and periodically paused for a few seconds. I think they may be having network latency issues during busy times .. has anyone talk to ANVIL support ?
  6. C

    ANVIL API (Assent) Developer Thread

    I never used it in service mode. Are you using the SYSTEM account on the serivce registration ? I have not dealt with automatically loading the account. We manually open ANVIL in the morning since we run a gray box.
  7. C

    ANVIL API (Assent) Developer Thread

    I finally found the code :D ..... B_StartIteration(bBid ? m_bidIterator : m_askIterator); return (BookEntry *) B_GetNextBookEntry(bBid ? m_bidIterator : m_askIterator); This will give you the first Leve2 quote in the book. Create the iteratros as follow: // Book...
  8. C

    ANVIL API (Assent) Developer Thread

    In addition to tjfield comment, you can create your dialog resource like this: g_pCDlgStatusMsg = new CDlgStatusMsg(::AfxGetMainWnd()); g_pCDlgStatusMsg->Create(IDD_STATAMSGDLG, ::AfxGetMainWnd()); g_pCDlgStatusMsg->ShowWindow(SW_SHOW);
  9. C

    ANVIL API (Assent) Developer Thread

    Have you tried running it in service mode ? You could use an AT job to start/stop it every day ...
  10. C

    Option IV for stock

    It could be the way the diff vendors calculate it ... for example in balck-schooles one may use the interest rate from the otr tsy 10yr, other may use the 30yr ...
  11. C

    You Can't Trade Without A College Degree!!

    Rival, nice posting .. I have been in computers for 20yrs and I am ready for the jump to trading. Like yourself I'll be able to write my own tools ... we'll see hw it pans out ...
  12. C

    You Can't Trade Without A College Degree!!

    I am in my early 40s and I have succeeded in my career as a developer/technologist by focusing on Microsoft Technologies for 20yrs now. I have done all of this without a college degree. I have a family, 2 kids and pull income north of 250k/yr from my financial job in NYC. I have built one of...
  13. C

    Short Execution?

    It takes about 50-100ms or so if you hid the bid from a fast system.
  14. C

    ANVIL API (Assent) Developer Thread

    I think you are thinking about the specific "Microsoft Extension DLLs". Happens to be that ANVIL calls the DLLs "extensions" also. I am not sure why but earlier I was having unpedictable issues, so I added the module state. they dissapeared
  15. C

    is it a good deal?

    I am not sure about the others ones but commission 0.001 is good....
  16. C

    ANVIL API (Assent) Developer Thread

    I have not seen anything that you can link ANVIL to Excel (it does not mean there isn't) A developer can easily develop a link through DDE or COM into Excel using an ANVIL extension. The only issue that I may see is that ANVIL will be much faster than excel, and that can cause some...
  17. C

    ANVIL API (Assent) Developer Thread

    I actually built an extension to place my trades with bigger buttons. I do not work for Assent. I am independent contractor. You want to send this question to their dev support tema in Hoboken.
  18. C

    ANVIL API (Assent) Developer Thread

    What is the best order routing when placing B_SendOrder() for NYSE ?
  19. C

    ANVIL API (Assent) Developer Thread

    Does anyone know how to get the Best Bid/Ask ECN in MsgInsideQuote - M_NW2_INSIDE_QUOTE message ? You can get the Bid/Ask (m_stockHandle->GetBid()) but I need to figure out what ECN is the NBBO.
Back
Top