종목별 DIV/BPS/PER/EPS 조회get_market_fundamental 함수는 DIV/BPS/PER/EPS/PBR를 조회합니다.df = stock.get_market_fundamental("20250416")df.head() default가 KOSPI임으로 조회가 안되는 종목이 있으니 market = "ALL" 설정해 주십시오.df = stock.get_market_fundamental("20250416", market="ALL")#market 값은 KOSPI / KOSDAQ / KONEX / ALL 입니다. 일자별 DIV/BPS/PER/EPS 조회get_market_fundamental 함수는 특정 종목에 대해 입력된 기간의 DIV/BPS/PER/EPS/PBR 리턴합니다. df = stock..