Skip to content

Releases: Miensoap/KISHelper

Release Version 0.2.4 πŸ’–

05 Aug 00:02

Choose a tag to compare

πŸ’Ž NEW FEATURE πŸ’Ž

  • Add method at Stock class : Get detail stock infomation!!
soxl.getDetails().englishName();
  • Integrate ExchangeCode and ProductTypeCode
    • Mark @Deprecated original classess

πŸ› FIX πŸ›

  • Fix typo in QueryParamKey
    • PRODUCT_TYPE_CODE : "RDT_TYPE_CD" -> "PRDT_TYPE_CD";

✏️ ETC ✏️

  • Rename method:

    • KoreaInvestmentApi.getDailyPrice-> getOverseasPeriodPrice
  • Delete JsonEncoderutil class

Release Version 0.2.3 πŸ’–

04 Aug 06:49

Choose a tag to compare

πŸ’Ž NEW FEATURE πŸ’Ž

  • Add Stock class : more convenient price inquiry function
Stock soxl = new Stock("SOXL", AMEX);
System.out.println(soxl.getPriceOfDate(LocalDate.of(2024, 8, 2), true));
  • Define constants for QueryParam Value

✏️ ETC ✏️

  • Rename classes :
    • Price -> StockQuotationsResponse
    • DailyStockPriceInfo -> PeriodStockPriceInfo

Realese Version 0.2,2

04 Aug 02:34

Choose a tag to compare

πŸ’Ž NEW FEATURE πŸ’Ž

  • Use QueryMap for better query parameter management
  • Define constants for:
    • tr_id
    • exchange code
    • api path
    • query param key

πŸ› FIX πŸ›

  • Fix issue where access token is set to Bearer null when it is missing from the yml file
  • Resolve issue where personal API key is included in the distribution files:
    • Revoke the exposed API key
    • Modify the build script to exclude the file containing the API key

✏️ ETC ✏️

  • Add JavaDoc comments to some classes
  • Code formatting improvements

Release Version 0.2.1 πŸ’–

04 Aug 01:35

Choose a tag to compare

πŸ’Ž NEW FEATURE πŸ’Ž

  • Added method to convert RequestHeader to HeaderMap.

πŸ› FIX πŸ›

  • Corrected token issuance message output error: fixed issue where ` was used instead of '.

✏️ ETC ✏️

  • Integrated accessToken into apiAuth class.
  • Refactored API path constants and TradingID constants.

Release Version 0.2.0 πŸ’–

04 Aug 01:34

Choose a tag to compare

πŸ’Ž NEW FEATURE πŸ’Ž

  • Check for access token expiration information in kish.yml.
  • If the token is missing or expired, issue a new one and print an informative message.