- Search Crypto Craft
-
stratman replied Apr 10, 2012Website updated — Have updated pipware.com so less confusing for people downloading software. Now back to work on my EA :nerd:
pipware.com
-
stratman replied Apr 9, 2012What am I up to? — I had hoped to release my robot (EA) this month. Certainly, it is not ready. I spent quite a bit of my summer enjoying my family (summer is Oct -> Mar). We did lot's of fishing etc. I will get back into programming over ...
pipware.com
-
stratman replied Feb 5, 2012Would be possible but a lot of work involved. Bit too much for me at this stage as my robot is getting all my attention. Sorry that I can't be much help.
pipware.com
-
stratman replied Jan 12, 2012Install from inside eclipse — I'm assuming you tried going directly to the web address to download something? If so, that's incorrect for eclipse. Install from inside eclipse: image image
Eclipse plugin MQL Editor
-
stratman replied Dec 30, 2011quantlib eclipse cdt semantic errors yet compiles — In post 35 I mentioned ... image Turns out that this is not an eclipse bug but caused by the automatic inclusion of quantlib experimental headers. You can fix this permanently by commenting ...
c++ dll tutorials using eclipse
-
stratman replied Dec 30, 2011eclipse workspace preferences — Here's a few preferences I change to make working in eclipse more convenient. You'll have these automatically if you use the workspace I provide on the first post. You get to the preferences window on the top ...
c++ dll tutorials using eclipse
-
stratman replied Dec 29, 2011ta-lib: test in eclipse — After building with MSYS we need to copy the headers and library to our mingw directories. The headers are a little complicated ... you need to create a new ta-lib directory in the mingw includes to copy headers into: ...
c++ dll tutorials using eclipse
-
stratman replied Dec 29, 2011ta-lib: building with msys/mingw — Get the linux download from http://ta-lib.org/. We can use the linux download because we can compile it in msys to make it run in windows: image 'tar.gz' is a common linux extension. In simple terms it is a ...
c++ dll tutorials using eclipse
-
stratman replied Dec 29, 2011ta-lib: Technical Analysis Library — image Multi-Platform Tools for Market Analysis ... TA-Lib is widely used by trading software developers requiring to perform technical analysis of financial market data. Includes 200 indicators such as ...
c++ dll tutorials using eclipse
-
stratman replied Dec 29, 2011quantlib: test the library in eclipse — Create a new exe project with a blank source file (instructions) Paste in the following code and save the file: #include <ql/quantlib.hpp> #include <boost/timer.hpp> #include <iostream> #include ...
c++ dll tutorials using eclipse
-
stratman replied Dec 29, 2011quantlib: building with msys/mingw — Building this library is dependent on already having boost and msys set up as explained in the first post of this thread. Download the latest source files from ...
c++ dll tutorials using eclipse
-
stratman replied Dec 29, 2011QuantLib: framework for quantitative finance — image The QuantLib project is aimed at providing a comprehensive software framework for quantitative finance. QuantLib is a free/open-source library for modeling, trading, and risk management in ...
c++ dll tutorials using eclipse
-
stratman replied Dec 28, 2011MSYS: Minimal SYStem Configuration — MSYS was installed as part of MinGW. To use MSYS components 'configure', 'make', 'make install' features, we must modify our path environment variable. We already added c:mingwbin when we installed the ...
c++ dll tutorials using eclipse
-
stratman replied Dec 28, 2011MSYS: Minimal SYStem — MSYS is a minimal linux (bash) shell that provides the gnu build system i.e. 'configure', 'make', 'make install'. Read more about it here: http://www.mingw.org/faq/What_is_MSYS
c++ dll tutorials using eclipse
-
stratman replied Dec 28, 2011boost: test the libraries — We're going to run two tests. One using boost headers only, the other requiring a library we built previously. Testing headers Create a new executable project (instructions here). Paste the following code into the ...
c++ dll tutorials using eclipse
-
stratman replied Dec 28, 2011Create an exe file — Often we will want to create a new executable starting from a blank cpp file. This is the procedure. Create a new project: image Choose exe project: image Create a new source folder: image image Create a new source ...
c++ dll tutorials using eclipse
-
stratman replied Dec 28, 2011boost: build the libraries — Nothing to Build? Most Boost libraries are header-only: they consist entirely of header files containing templates and inline functions, and require no separately-compiled library binaries or special treatment when ...
c++ dll tutorials using eclipse
-
stratman replied Dec 28, 2011boost: build the engine — Download the 7z version of boost from http://www.boost.org/users/download/ image image Extract boost directly into your c: root using 7zip: image You need to edit the bootstrap file to make it work for MinGW: ...
c++ dll tutorials using eclipse
-
stratman replied Dec 28, 2011boost: what is it? — I use boost because it provides what most people would consider to be missing in the c++ language. In fact, boost libraries will become part of the c++ language ... Until then, we have to 'add' boost headers and libraries ...
c++ dll tutorials using eclipse
-
stratman replied Dec 27, 2011MT4 DLL: Test the DLL in MT4 — Copy the dll directly from inside the eclipse ide: image Paste the dll into the libraries directory of mt4: image Note that the dll size is quite large. This is because it was compiled as a 'debug' version. ...
c++ dll tutorials using eclipse