@@ -289,6 +289,9 @@ public class IndexApiServiceImpl implements IndexApiService {
if(from > to){
to = new Date().getTime() / 1000;
}
+ if(!symbol.contains("_")){
+ symbol = symbol +"_bb";
+ }
List<HistoryVo> historyVoList = new ArrayList<>();
List<HistoryVo> historyVoDays = new ArrayList<>();
getDate(symbol, resolution, from, to, historyVoList, historyVoDays);