• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

Poll: for how much would you buy a book on "Getting Started with QuantLib"?

For how much would you buy a book on "Getting Started with QuantLib"?

  • For at most $10

    Votes: 18 30.0%
  • For at most $20

    Votes: 5 8.3%
  • For at most $30

    Votes: 5 8.3%
  • For at most $50

    Votes: 4 6.7%
  • I would also pay $100 if the book is really good

    Votes: 1 1.7%
  • I would not buy in any case

    Votes: 15 25.0%
  • What is QuantLib?!

    Votes: 12 20.0%

  • Total voters
    60
"By pulling the code from Git (at a stable versión of course) you can take advantage from the cmake files and using the CMAKE plugin of vscode you can compile and debug in a matter of minutes."
 
I had installed the latest versión of Quantlib.
Microsoft Visual Studio Community 2022 (64-bit) - Version 17.7.4
I followed all the instructions: first realease and then debug mode was also generated, no errors during the installation
The error I was struggling with for a while was (trying some code /copy-paste/):
1>LINK : fatal error LNK1104: cannot open file 'QuantLib-mt-gd.lib'
I found this vague link
[Quantlib-users] some Big Picture issues and "cannot open file 'QuantLib-vc90-mt-gd.lib'"
It took me a while to solve the compile error
------

Exploring Quantlib: Testing Examples for Financial Modeling

 
Last edited:
9N
I had installed the latest versión of Quantlib.
Microsoft Visual Studio Community 2022 (64-bit) - Version 17.7.4
I followed all the instructions: first realease and then debug mode was also generated, no errors during the installation
The error I was struggling with for a while was (trying some code /copy-paste/):
1>LINK : fatal error LNK1104: cannot open file 'QuantLib-mt-gd.lib'
I found this vague link
[Quantlib-users] some Big Picture issues and "cannot open file 'QuantLib-vc90-mt-gd.lib'"
It took me a while to solve the compile error
------

Exploring Quantlib: Testing Examples for Financial Modeling

I would say

1. does lib file exist?
2. is it compatible with project (x86, x64 stuff)
3. is it in your project properties?

QuantLib-mt-gd.lib'
my file a while back was quantlib-vc140-mt-gd.lib
?
Are you missing a version number? Build again for vc142, whatever.

It's not rocket science at this stage.
 
Last edited:
Please see.
ql.jpg
 
A well-written book would save a lot of lost time.
// the kids have to eat; $3 won't go far after Amazon has got its share. And then the taxman.
PDF books should cost not more than $3.00,
it would be the only way I would make a reality my Amazon wish li
 
9N

I would say

1. does lib file exist?
2. is it compatible with project (x86, x64 stuff)
3. is it in your project properties?


my file a while back was quantlib-vc140-mt-gd.lib
?
Are you missing a version number? Build again for vc142, whatever.

It's not rocket science at this stage.
is it working now?
 
is it working now?
Hi Dr. Duffy
Indeed, it is .
I wanted to inform the Quantnet forum community about the approach I took to address the issue. I began by thoroughly debugging the project file.
I'll continue to provide updates within the link I previously shared, and in the near future, I plan to incorporate some of the code from the GitHub repository.
Best regards.
 
Last edited:
Hi Dr. Duffy
Indeed, it is .
I wanted to inform the Quantnet forum community about the approach I took to address the issue. I began by thoroughly debugging the project file.
I'll continue to provide updates within the link I previously shared, and in the near future, I plan to incorporate some of the code from the GitHub repository.
Best regards.
What was the (root) cause of the problem? a 1-liner is also OK.
Many people are interested.
 
Back
Top