commit f7393d1455e0a9365734b085ba09bce85f4b0292 Author: sinus Date: Sat Feb 17 22:14:53 2024 +0100 Initial Project version diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..0d745c2 --- /dev/null +++ b/LICENSE @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) 2024 Sasedev + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..c534aa6 --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +# KhadhroonyXtbJfx +## Project Description +Trading Client for XTB Platform developed in Java language. + +We used the [xAPI Protocol Documentation](http://developers.xstore.pro/documentation/2.5.0 "xAPI Protocol Documentation v2.5.0") as main doc to implement a simple (without OHLC or Candlestick for the moment) - multi-connections client to the XTB servers + +As indicated in the documentation, the communication can be with Sockets or Websockets (but not both) so we opted for the sockets. + +We had choice to use [JavaFX](https://openjfx.io/ "OpenJFX LTS V21") or [SWT](https://www.eclipse.org/swt/) as graphical layer but we opted for JavaFX as it can be easier than SWT to generate an executable and to add charts later. + +The project is using [Gradle](https://gradle.org/ "Gradle Build Tool V8.6") for building and dependencies management. + +The communication with the server is using Json format so we used the [Jackson Json Library](https://github.com/FasterXML/jackson) to serialize requests from beans to Json and to deserialize received responses. + +The local storage of data is using the [mapDB](https://github.com/jankotek/mapdb/tree/mapdb-3.1.0 "MapDB: database engine") library + +## Current Version +0.0.1 + +## Last Change +Initial Project version