Serving the Quantitative Finance Community

Search found 12 matches

by GiusArg
September 21st, 2022, 9:07 pm
Forum: Programming and Software Forum
Topic: Google's Carbon
Replies: 38
Views: 13732

Re: Google's Carbon

The Great C++ Schism.
In this case, Herb Sutter is chair of the ISO C++ committee
by GiusArg
September 17th, 2022, 1:48 pm
Forum: Programming and Software Forum
Topic: Google's Carbon
Replies: 38
Views: 13732

Re: Google's Carbon

by GiusArg
September 15th, 2022, 5:22 pm
Forum: Programming and Software Forum
Topic: Binance C++ API Question
Replies: 9
Views: 5904

Re: Binance C++ API Question

I understand. I have read reasons for this being the case, including security issues, the fact they (the committee) will end up making many people unhappy whatever they decide,that once you put something in the standard, it's difficult to revert mistakes, and the fact that there are already third pa...
by GiusArg
September 15th, 2022, 6:39 am
Forum: Programming and Software Forum
Topic: Binance C++ API Question
Replies: 9
Views: 5904

Re: Binance C++ API Question

Not sure what native means here: C++ has no std:: networking library, but Asio is a native C++ library (it's not a wrapper around a C library, for example). And it's widely used in industry. I know nothing about Java/C# and whether their libraries are better, but the fact is, Binance doesn't use Asi...
by GiusArg
September 12th, 2022, 9:04 pm
Forum: Programming and Software Forum
Topic: Binance C++ API Question
Replies: 9
Views: 5904

Re: Binance C++ API Question

I still have a few questions. Question 1. So my question boils down to Whether I can insert my own functions in between websocket commands before  enter_event_loop() and after  init() websocket functions or I have to handle other things in the callback function/functions. No. All the examples invok...
by GiusArg
September 11th, 2022, 6:46 pm
Forum: Programming and Software Forum
Topic: Binance C++ API Question
Replies: 9
Views: 5904

Re: Binance C++ API Question

You must leave them at the end of the main function, as all the examples show. This is pretty standard in networking applications (e.g. Boost ASIO). The last three lines effectively start the execution. The first one initialises the websocket , the second one creates the connection to the endpoint (...
by GiusArg
August 4th, 2022, 8:21 pm
Forum: The Quantitative Finance Code Library Project
Topic: A compendium C++ open source libraries
Replies: 37
Views: 91668

Re: A compendium C++ open source libraries

look at Boost C++ Fusion, Multiindex,Bimaap 
can build your own version in C++?
These seem to be general purpose libraries, while DataFrame aims to be a substitute for Python Pandas (or at least for its dataframes).
by GiusArg
August 4th, 2022, 8:05 pm
Forum: Programming and Software Forum
Topic: Google's Carbon
Replies: 38
Views: 13732

Re: Google's Carbon

Maybe because I'm new here and not used to what is meant to be a lightweight banter, but where he got his degree, and indeed, whether he got one or not, is completely irrelevant, for example, even assuming that he is introducing his own single-handed project (which is not). Many of the above mention...
by GiusArg
August 4th, 2022, 6:58 am
Forum: Programming and Software Forum
Topic: Google's Carbon
Replies: 38
Views: 13732

Re: Google's Carbon

Embarrassing display of smear and mockery towards one person, for lack of better arguments, compounded by elitism. If the existence of a large legacy code base becomes the main or the only reason to convince people to learn C++, while its issues are not fixed, the generational turnover will kill it ...
by GiusArg
April 20th, 2022, 1:43 pm
Forum: The Quantitative Finance Code Library Project
Topic: A compendium C++ open source libraries
Replies: 37
Views: 91668

Re: A compendium C++ open source libraries

Hello, I'm quite new to this forum, joined as a January 2022 CQF delegate. As a C++ developer I must admit a bit of envy towards Python for having excellent statistical and numeric libraries such as Pandas and Numpy. In particular I've been searching something equivalent to Pandas for C++ and it tur...