Quickstart for the Open Java Trading System | |
|
|
Q u i c k s t a r t
tar -xzvf OpenJavaTradingSystem-bin-0.13.tar.gz cd OpenJavaTradingSystem-bin-0.13 Edit the file: ./project-workspace/lisp/abclrc so that the variable *lisp-devel-root* points to the location where you unpacked the tar file. *THIS VARIABLE HAS TO END IN A SLASH* If you have to use a web proxy you also will want to edit the file: ./conf/jts.properties Enter your proxy configuration here (any field can be left empty). Set up the abclrc config file: ln -s `pwd`/project-workspace/lisp/abclrc ~/.abclrc And start up the OpenJavaTradingSystem integrated into the J editor: ./ojts.sh An editor window of the J editor will open. Navigate with the file browser on the left hand side (screenshot) to the directory: ./project-workspace/lisp/src/ojts and open the file (screenshot): ./project-workspace/lisp/src/ojts/ojts.lisp As next step you should open the slime lisp mode. To do that type the key combination: Alt X and enter in the little 'commandline' that opens: slime and hit the return key (screenshot). Now we have to initialize the OpenJavaTradingSystem library. You do that by executing the following command in the slime buffer: (asdf:oos 'asdf:load-op 'ojts) (in-package #:ojts) (functionality.init) Enter the command as it is in one line and hit the enter key. You can find this command sequence at the top of the ojts.lisp file and you can use copy and paste to execute this command in the lisp buffer (screenshot) The compilation of the lisp code will take some time. You will have to execute this one line of initialization code every time you use the lisp interface to the OpenJavaTradingSystem library. To initialized the database structures that are needed for the operation of the OpenJavaTradingSystem library you have to execute the following command only once. Next time you want to work with the OpenJavaTradingSystem library you do not need to execute it again (but it does no harm if you do). (dbconfiguration.readxmlconfiguration "/home/cs/tmp/OpenJavaTradingSystem-bin-0.13/testread.xml") The data structures in the sql database are now created and you can execute the test case by typing: (test10) and hitting the enter key. In the background you will see some debug and info messages telling you what the system currently does: - fetching data over the internet from Yahoo and OnVista - inserting the data into the database so that next time you need the data you get it from the database and not from the web anymore. - reading the data from the database - executing some algorithms on the fetched data - display the results as a chart (screenshot)Windows usage notes: Basically the same instructions given above also apply to windows users with some minor differences. First of all you cannot create symbolic links on windows and therefore you will have to copy the abclrc file to your 'home' directory. In windows your 'home' directory is considered to be the root of the C: drive. Whenever you have to give path names you have to give them as if you would use a "file://" URL without the actual "file://" prefix. For example:
![]() ![]() ![]() |
|
Last modified: Thu Jun 2 19:21:02 CEST 2005
|