이 함수 오류 안나게 수정 좀 부탁드립니다~!
if (nCount > 0) {
MKList.forEach(function(stock) {
aItemList = aItemList.filter(item => item !== stock.code); // 이미 매수한 종목 제외
});
OrderList = aItemList.filter(stock => !IsStockInAccount(stock) && aItemList.length > 0); // 계좌에 없는 종목만 추가
}
답변 1
예스스탁
예스스탁 답변
2024-12-09 15:36:19
안녕하세요
예스스탁입니다.
if (nCount > 0)
{
MKList.forEach(function(stock) {
aItemList = aItemList.filter(function(item){item != stock.code}); // 이미 매수한 종목 제외
});
OrderList = aItemList.filter(function(stock){!IsStockInAccount(stock) && aItemList.length > 0}); // 계좌에 없는 종목만 추가
}
즐거운 하루되세요
> 핫셔 님이 쓴 글입니다.
> 제목 : 수식작성
> 이 함수 오류 안나게 수정 좀 부탁드립니다~!
if (nCount > 0) {
MKList.forEach(function(stock) {
aItemList = aItemList.filter(item => item !== stock.code); // 이미 매수한 종목 제외
});
OrderList = aItemList.filter(stock => !IsStockInAccount(stock) && aItemList.length > 0); // 계좌에 없는 종목만 추가
}