You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
406 B
18 lines
406 B
package com.deepchart.service;
|
|
|
|
import com.deepchart.entity.StockDailyData;
|
|
import com.deepchart.entity.StockInfo;
|
|
|
|
import java.util.List;
|
|
|
|
public interface IndexService {
|
|
List<StockDailyData> getStockData(StockInfo stock);
|
|
|
|
String macd(List<StockDailyData> list);
|
|
|
|
String kdj(List<StockDailyData> list);
|
|
|
|
String kd(List<StockDailyData> list);
|
|
|
|
String rsi(List<StockDailyData> list);
|
|
}
|