Excel 2010 x64

Discussion in 'Trading Software' started by mgookin, Dec 14, 2010.

  1. Well, to do it, you've got to shut down a lot of automatic facilities and do them on a timer instead.
    Make the calculations update manually, lock the worksheet, kill the screen updating, etc.
    Once you do that, it's pretty fast. Its automatic the event handling that really slows it down.
     
    #11     Dec 20, 2011
  2. Yeah, I was thinking of an approach that minimizes the use of VBA and tries to use 2010's strength by allowing the formulas to do all the work (it must be a horrible approach b/c it's pretty much the exact opposite of what your saying, ha). The only macro in the sheet is one that is event driven by a single cell that flags to TRUE when there is an order to be sent from any of the models. Then it can run a quick order send / risk check macro, but then right back to the sheet on full auto-calc. The downside to the approach is that any signal logic must be embedding in cells creating the need for any historical bars, stats, etc. to be held in formulas as well. My concern with that approach is losing ticks while copying data around for bars or when the order sending macro is running. I don't know the answer, but I would imagine that data gets lost rather than queue??
     
    #12     Dec 20, 2011
  3. you need to be using something other than Excel
     
    #13     Dec 20, 2011
  4. mokwit

    mokwit

    If I write something in Excel 2003 32 bit and then open it in 10 64 bit and then save as xl10 64 bit do i then get all the benefits of 10 64 bit? - reason is I prefer to do development in 2003 with old interface I am used to and have been using for years.
     
    #14     Dec 20, 2011
  5. Yes, just save the workbook as XLSX or XLSM format. Unfortunately you'll need to get used to the "Ribbon" interface. However, someone did create an addin that provides the old style menu bar system in XL 2007, 2010. You should be able to Google it.
    The VBA menues are the same.
     
    #15     Dec 21, 2011
  6. J.P.

    J.P.

    I've found the most efficient format for 64-bit Excel to be .xlsb. Try it, you'll see.
     
    #16     Dec 21, 2011
  7. Interesting. Have any links to prove or confirm that claim ?
     
    #17     Dec 22, 2011
  8. GTS

    GTS

    http://blogs.msdn.com/b/davbosch/archive/2006/08/29/730183.aspx

    http://blogs.msdn.com/b/dmahugh/archive/2006/08/22/712835.aspx

    One more thing to consider before jumping to 64bit Excel, compatibility:

    http://technet.microsoft.com/en-us/library/ee681792.aspx

     
    #18     Dec 22, 2011