Dukascopy Support Board
http://www.dukascopy.com/swiss/english/forex/jforex/forum/

Update JForex 3 include Guava: Google Core Libraries For Java version >=23.6.1
http://www.dukascopy.com/swiss/english/forex/jforex/forum/viewtopic.php?f=128&t=57338
Page 1 of 1

Author:  sheldon [ Sun 03 May, 2020, 18:46 ]
Post subject:  Update JForex 3 include Guava: Google Core Libraries For Java version >=23.6.1

Request: change com.google.guava:guava:19.0 to com.google.guava:guava:>=20.0
Example:
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
<dependency>
    <groupId>com.google.guava</groupId>
    <artifactId>guava</artifactId>
    <version>19.0</version>
</dependency>

becomes
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
<dependency>
    <groupId>com.google.guava</groupId>
    <artifactId>guava</artifactId>
    <version>23.0</version>
</dependency>

All java based JForex 3 Trading Platforms (JForex 3, JForex 3 Webstart, JForex 3 SDK) have dependency on Google Guava version 19.0, (released on 2015-12-09, quite old). This is missing package common.gaph for Graph support introduced in v20.0.

I working an indicator based on multiple instruments and a graph would easy capture the relationships that exist between them:

Use case: I can check for market dislocation by checking sequence of pairs.

Example: USDCHF = USDJPY*EURGBP*GBPCHF/EURJPY

Author:  API Support [ Tue 26 May, 2020, 17:30 ]
Post subject:  Re: Update JForex 3 include Guava: Google Core Libraries For Java version >=23.6.1

Hello.

You can include needed library to your compiled .jfx file
https://www.dukascopy.com/wiki/en/devel ... -libraries

Kind regards.

  Page 1 of 1