lazy var stocksCategoryFilterBtn: UIButton = {
let bt = UIButton(type: .system)
bt.setTitle("전일 기준 ", for: .normal)
let config = UIImage.SymbolConfiguration(
pointSize: 11, weight: .regular, scale: .default)
let image = UIImage(systemName: "chevron.down", withConfiguration: config)
bt.setImage(image, for: .normal)
bt.tintColor = .systemGray
bt.translatesAutoresizingMaskIntoConstraints = false
bt.semanticContentAttribute = .forceRightToLeft
bt.titleLabel?.font = UIFont.systemFont(ofSize: 13)
return bt
}()