Compare commits

..

7 Commits

Author SHA1 Message Date
Congkiet4695
f87df03715 fix bug 2024-12-11 00:01:57 +07:00
vpckiet
fc59d1f47c Merge branch 'bug/update_symbol' into 'develop'
fix bug chart day

See merge request india/india_market_java!54
2024-12-10 14:57:04 +00:00
vpckiet
6fdc13a72d fix bug chart day 2024-12-10 21:56:23 +07:00
vpckiet
6b5623dc33 Merge branch 'bug/update_symbol' into 'develop'
fix bug get chart

See merge request india/india_market_java!53
2024-12-10 13:15:40 +00:00
vpckiet
4a22fc0a95 fix bug get chart 2024-12-10 20:14:42 +07:00
vpckiet
563dae1c45 Merge branch 'feature/update_bseindia_detail' into 'develop'
update chart

See merge request india/india_market_java!52
2024-12-10 12:55:38 +00:00
vpckiet
0f5f25f744 Merge branch 'feature/update_bseindia_detail' into 'develop'
update get detail from bseindia

See merge request india/india_market_java!51
2024-12-10 09:38:33 +00:00

View File

@@ -816,13 +816,25 @@ public class MoneyApiController {
for (String dateStr : dates) {
try {
Date date = sdf.parse(dateStr);
list.add(date.getTime());
list.add(date.getTime() / 1000);
} catch (ParseException e) {
e.printStackTrace();
}
}
}
private Long convertToTimestamp(String dateStr) {
try {
SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy hh:mm:ss a", Locale.US);
Date date = sdf.parse(dateStr);
return date.getTime() / 1000;
} catch (ParseException e) {
e.printStackTrace();
return 0L;
}
}
@GetMapping({"/market/api/market/money/history/kLine", "/api/market/money/history/kLine"})
@ApiOperation(value = "获取kline的money数据源", notes = "获取kline的money数据源", response = StockHistoryResponse.class)
@@ -840,12 +852,12 @@ public class MoneyApiController {
@RequestParam String resolution
) {
MoneyStock moneyStock1 = moneyStockRepository.findOne(
QMoneyStockPO.moneyStockPO.moneyScId.eq(symbol)
QMoneyStockPO.moneyStockPO.nseIndiaId.eq(symbol)
.and(QMoneyStockPO.moneyStockPO.isLock.eq(0))
.and(QMoneyStockPO.moneyStockPO.isShow.eq(0)))
.orElse(null);
if (moneyStock1 != null) {
if (moneyStock1 != null && moneyStock1.getUseFromBseindia()) {
String json = this.getChartData(moneyStock1.getNseIndiaId(), resolution);
@@ -872,6 +884,8 @@ public class MoneyApiController {
List<Long> volumeList = new ArrayList<>();
List<Long> dateList = new ArrayList<>();
Map<String, JsonObject> latestDataMap = new LinkedHashMap<>();
if (dataInputValues.size() > 0) {
JsonObject dataObject = dataInputValues.get(0).getAsJsonObject();
@@ -882,12 +896,80 @@ public class MoneyApiController {
JsonArray volumeArray = dataObject.getAsJsonArray("VolumeData");
JsonArray dateArray = dataObject.getAsJsonArray("DateData");
openArray.forEach(o -> addToListDouble(openList, o.getAsJsonObject().get("Open").getAsString()));
highArray.forEach(h -> addToListDouble(highList, h.getAsJsonObject().get("High").getAsString()));
lowArray.forEach(l -> addToListDouble(lowList, l.getAsJsonObject().get("Low").getAsString()));
closeArray.forEach(c -> addToListDouble(closeList, c.getAsJsonObject().get("Close").getAsString()));
volumeArray.forEach(v -> addToList(volumeList, v.getAsJsonObject().get("Volume").getAsString()));
dateArray.forEach(d -> addDatesToList(dateList, d.getAsJsonObject().get("Date").getAsString()));
if (resolution.equals("H")) {
openArray.forEach(o -> addToListDouble(openList, o.getAsJsonObject().get("Open").getAsString()));
highArray.forEach(h -> addToListDouble(highList, h.getAsJsonObject().get("High").getAsString()));
lowArray.forEach(l -> addToListDouble(lowList, l.getAsJsonObject().get("Low").getAsString()));
closeArray.forEach(c -> addToListDouble(closeList, c.getAsJsonObject().get("Close").getAsString()));
volumeArray.forEach(v -> addToList(volumeList, v.getAsJsonObject().get("Volume").getAsString()));
dateArray.forEach(d -> addDatesToList(dateList, d.getAsJsonObject().get("Date").getAsString()));
} else {
for (int i = 0; i < openArray.size(); i++) {
String open = openArray.get(i).getAsJsonObject().get("Open").getAsString();
String high = highArray.get(i).getAsJsonObject().get("High").getAsString();
String low = lowArray.get(i).getAsJsonObject().get("Low").getAsString();
String close = closeArray.get(i).getAsJsonObject().get("Close").getAsString();
String volume = volumeArray.get(i).getAsJsonObject().get("Volume").getAsString();
String dateStr = dateArray.get(i).getAsJsonObject().get("Date").getAsString();
Long timestamp = convertToTimestamp(dateStr);
String dateTimeKey = dateStr;
JsonObject dataJson = new JsonObject();
dataJson.addProperty("Open", open);
dataJson.addProperty("High", high);
dataJson.addProperty("Low", low);
dataJson.addProperty("Close", close);
dataJson.addProperty("Volume", volume);
dataJson.addProperty("Date", dateStr);
latestDataMap.put(dateTimeKey, dataJson);
}
latestDataMap.forEach((key, value) -> {
// Lấy giá trị các trường Open, High, Low, Close, Volume, Date từ dữ liệu
String openData = value.get("Open").getAsString();
String highData = value.get("High").getAsString();
String lowData = value.get("Low").getAsString();
String closeData = value.get("Close").getAsString();
String volumeData = value.get("Volume").getAsString();
String dateData = value.get("Date").getAsString();
// Tách các giá trị trong chuỗi bằng dấu phẩy
String[] openValues = openData.split(",");
String[] highValues = highData.split(",");
String[] lowValues = lowData.split(",");
String[] closeValues = closeData.split(",");
String[] volumeValues = volumeData.split(",");
String[] dateValues = dateData.split(",");
for (int i = 0; i < openValues.length; i++) {
double open = Double.parseDouble(openValues[i]);
double high = Double.parseDouble(highValues[i]);
double low = Double.parseDouble(lowValues[i]);
double close = Double.parseDouble(closeValues[i]);
long volume = Math.round(Double.parseDouble(volumeValues[i]));
long timestamp = convertToTimestamp(dateValues[i]);
int index = dateList.indexOf(timestamp);
if (index == -1) {
dateList.add(timestamp);
openList.add(open);
highList.add(high);
lowList.add(low);
closeList.add(close);
volumeList.add(volume);
} else {
openList.set(index, open);
highList.set(index, high);
lowList.set(index, low);
closeList.set(index, close);
volumeList.set(index, volume);
}
}
});
}
StockHistoryResponse response = new StockHistoryResponse();
response.setS("ok");
@@ -898,6 +980,33 @@ public class MoneyApiController {
response.setC(closeList);
response.setV(volumeList);
// if (resolution.equals("H")) {
// Set<String> desiredTimes = new HashSet<>(Arrays.asList("09:30", "10:30", "11:30", "12:30", "13:30", "14:30"));
//
// // Filter data based on timestamps
// SimpleDateFormat sdf = new SimpleDateFormat("HH:mm");
// List<Integer> indicesToKeep = new ArrayList<>();
// for (int i = 0; i < dateList.size(); i++) {
// String time = sdf.format(new Date(dateList.get(i) * 1000));
// if (desiredTimes.contains(time)) {
// indicesToKeep.add(i);
// }
// }
//
// // Filter corresponding data
// List<Long> filteredT = indicesToKeep.stream().map(dateList::get).collect(Collectors.toList());
// List<Double> filteredO = indicesToKeep.stream().map(openList::get).collect(Collectors.toList());
// List<Double> filteredH = indicesToKeep.stream().map(highList::get).collect(Collectors.toList());
// List<Double> filteredL = indicesToKeep.stream().map(lowList::get).collect(Collectors.toList());
// List<Double> filteredC = indicesToKeep.stream().map(closeList::get).collect(Collectors.toList());
// List<Long> filteredV = indicesToKeep.stream().map(volumeList::get).collect(Collectors.toList());
// response.setT(filteredT);
// response.setO(filteredO);
// response.setH(filteredH);
// response.setL(filteredL);
// response.setC(filteredC);
// response.setV(filteredV);
// }
return ResponseEntity.ok(response);
}
}