Serving the Quantitative Finance Community

Search found 33 matches

by opti999
August 2nd, 2012, 1:03 pm
Forum: Trading Forum
Topic: CQG Developer Forum
Replies: 2
Views: 12514

CQG Developer Forum

I'm just starting out with CQG's API but notice they don't have a developer forum. Is Wilmott the next best thing?
by opti999
January 19th, 2012, 2:33 pm
Forum: Numerical Methods Forum
Topic: delta hedging
Replies: 1
Views: 15686

delta hedging

could someone explain how delta hedging works perhaps with an example?
by opti999
January 12th, 2012, 7:23 am
Forum: Numerical Methods Forum
Topic: easy delta hedging question
Replies: 1
Views: 16550

easy delta hedging question

I'd like to learn more about managing an options portfolio, residual exposure and specifically automatically hedging (using programming) residual delta exposure.Can anyone help or point me in the right direction?
by opti999
June 13th, 2008, 1:43 pm
Forum: Programming and Software Forum
Topic: Metastock XMASTER
Replies: 1
Views: 54053

Metastock XMASTER

<t>trying to find the structure/format of Metastock's XMASTER (have MASTER & EMASTER)closest I can get is:XMASTER:record length 150 bytesStart Byte End Byte Length Description Type0 0 1 Unknown1 15 15 Stock symbol: ends with a byte 0 String16 61 46 Stock name: ends with a byte 0 String62 62 1 ’D...
by opti999
February 12th, 2008, 2:37 pm
Forum: Programming and Software Forum
Topic: registered component may not always be installed
Replies: 2
Views: 59636

registered component may not always be installed

.. for what its worth, the fact that I've referred to:component1.task1in the code when the component isn't installed, generates a "Type 'component1.task1' is not defined.I thought something like the following may have been available:if component1 defined thencomponent1.task1end if
by opti999
February 4th, 2008, 1:32 pm
Forum: Programming and Software Forum
Topic: registered component may not always be installed
Replies: 2
Views: 59636

registered component may not always be installed

HiIs it possible to write code in VB2005 that uses a 3rd party component if installed and doesn't use it if its not?if I use something like:component1.task1it will work fine if the component is installed and registered but if it isn't then obvioulsy I'll get an error message.Thanks
by opti999
March 29th, 2007, 7:04 pm
Forum: Programming and Software Forum
Topic: debugging ActiveX
Replies: 12
Views: 78058

debugging ActiveX

problem solved.when debugging C++ ActiveX with VB2005 container, set debug type in ActiveX project to Native Only.
by opti999
March 29th, 2007, 11:37 am
Forum: Programming and Software Forum
Topic: debugging ActiveX
Replies: 12
Views: 78058

debugging ActiveX

<t>I suspect there's not a lot of interest in this but here's my update anyway ...I ran the ActiveX Control Test Container "tstcon32.exe" containing my ActiveX and managed to successfully hit my breakpoints in the C++ ActiveX code using both "Attach to Process" and Property Pages Debug Command.I ran...
by opti999
March 29th, 2007, 11:37 am
Forum: Programming and Software Forum
Topic: debugging ActiveX
Replies: 12
Views: 78058

debugging ActiveX

<t>I suspect there's not a lot of interest in this but here's my update anyway ...I ran the ActiveX Control Test Container "tstcon32.exe" containing my ActiveX and managed to successfully hit my breakpoints in the C++ ActiveX code using both "Attach to Process" and Property Pages Debug Command.I ran...
by opti999
March 29th, 2007, 11:36 am
Forum: Programming and Software Forum
Topic: debugging ActiveX
Replies: 12
Views: 78058

debugging ActiveX

<t>I suspect there's not a lot of interest in this but here's my update anyway ...I ran the ActiveX Control Test Container "tstcon32.exe" containing my ActiveX and managed to successfully hit my breakpoints in the C++ ActiveX code using both "Attach to Process" and Property Pages Debug Command.I ran...
by opti999
March 28th, 2007, 5:13 pm
Forum: Programming and Software Forum
Topic: debugging ActiveX
Replies: 12
Views: 78058

debugging ActiveX

I've abandoned the ActiveX debug, nothing works.I've tried inserting TRACE("%f\n", mydate);in the C++ code, hoping to get something out of the IDE debug output window at run time, but again nothing.does anyone have any experience with this? and perhaps reasons why I can get any output?Thanks
by opti999
March 27th, 2007, 7:55 am
Forum: Programming and Software Forum
Topic: debugging ActiveX
Replies: 12
Views: 78058

debugging ActiveX

<r>sorry, no.it appears that debugging activex is not as easy as Microsoft describe it:<URL url="http://msdn2.microsoft.com/en-us/library/w54zfak1%28VS.80%29.aspxI%27ve"><LINK_TEXT text="http://msdn2.microsoft.com/en-us/librar ... ).aspxI've">http://msdn2.microsoft.com/en-us/library/w54zfak1(VS.80)....
by opti999
March 26th, 2007, 10:36 am
Forum: Programming and Software Forum
Topic: debugging ActiveX
Replies: 12
Views: 78058

debugging ActiveX

okay, yes, found "attach process" but no luck.if I run the exe and then in my activex project "attach process" (the exe), my breakpoints are still not hit in the activex project.get "This breakpoint will currently not be hit. No symbols have been loaded for this project"
by opti999
March 26th, 2007, 10:16 am
Forum: Programming and Software Forum
Topic: debugging ActiveX
Replies: 12
Views: 78058

debugging ActiveX

<r>sorry, unable to find "attach process" - is this what I'm missing? could you tell me where "attach process" is in VS2005 (ActiveX project C++). only have Command property in debug (property pages).but no mention of this in <URL url="http://msdn2.microsoft.com/en-us/library/w54zfak1%28VS.80%29.asp...
by opti999
March 26th, 2007, 6:37 am
Forum: Programming and Software Forum
Topic: debugging ActiveX
Replies: 12
Views: 78058

debugging ActiveX

<t>thanks.I'm using VS2005 and apparently, in the activex property pages, you need to set the command to what ever exe is using the activex.I'm in debug mode and have rebuilt the ocx and the PDB timestamp is the same as ocx.I'm trying the step through the activex code the same way as I would step th...