Skip to content

Commit

Permalink
fix sample data paths
Browse files Browse the repository at this point in the history
  • Loading branch information
uosis authored and wirew0rm committed Apr 11, 2023
1 parent 5b00d1d commit 4b920aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* @author afischer
*/
public class SimpleOhlcvDailyParser {
private static final String CHART_SAMPLE_PATH = StreamUtils.CLASSPATH_PREFIX + "io/fair_acc/chartfx/samples/financial/%s.csv";
private static final String CHART_SAMPLE_PATH = StreamUtils.CLASSPATH_PREFIX + "io/fair_acc/sample/chart/financial/%s.csv";

private static final ConcurrentDateFormatAccess dateFormatParsing = new ConcurrentDateFormatAccess("MM/dd/yyyy HH:mm");
private static final ConcurrentDateFormatAccess olderDateFormatParsing = new ConcurrentDateFormatAccess("MM/dd/yyyy HHmm");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class SimpleOhlcvReplayDataSet extends OhlcvDataSet implements Iterable<I

private static final String DATA_SOURCE_OHLC_TICK = "NQ-201609-GLOBEX";

private static final String DATA_SOURCE_PATH = "chartfx-samples/target/classes/io/fair_acc/chartfx/samples/financial/%s.scid";
private static final String DATA_SOURCE_PATH = "chartfx-samples/target/classes/io/fair_acc/sample/chart/financial/%s.scid";

private final transient DoubleProperty replayMultiply = new SimpleDoubleProperty(this, "replayMultiply", 1.0);

Expand Down

0 comments on commit 4b920aa

Please sign in to comment.