This commit is contained in:
dosang.yoon
2022-07-10 16:08:24 +09:00
parent 211474bd1b
commit 5ce3be27ba
4 changed files with 469 additions and 150 deletions

View File

@@ -33,7 +33,9 @@ class HTS_252670 (HTS):
bsLine['sell'] = [-1 for i in range(size)]
last_index = size - 1
buy, weight, sell = self.buySellChecker.getPriceAndWeight3(data, last_index)
#buy, weight, sell = self.buySellChecker.getPriceAndWeight3(data, last_index)
sell, weight = self.buySellChecker.getSellPriceAndWeight1(data, last_index)
buy, weight = self.buySellChecker.getBuyPriceAndWeight1(data, last_index)
return buy, weight, sell
def getSellingPrice(self, final_price):