'분류 전체보기' 카테고리의 글 목록 (46 Page) — Archive

분류 전체보기

Computer Science/Tech Stack

[MongoDB] Operators | 연산자

Operators 연산자 - MongoDB에서 지원하는 연산자에 대해 알아본다. - MongoDB에시 지원하는 연산자들의 큰 범주는 아래와 같다. Query and Projection Operators Update Operators Aggregation Pipeline Stages Aggregation Pipeline Operators Query Modifiers Query and Projection Operators (URL) [Database/MongoDB] Query and Projection Operators | 쿼리 연산자 및 프로젝션 연산자 Query and Projection Operators 쿼리 연산자 및 프로젝션 연산자 - Query Operator는 DB 내에서 데이터를 검색하는 연산..

Computer Science/Tech Stack

[MongoDB] BSON Types | BSON 데이터형

​BSON Types BSON 데이터형 - MongoDB의 Document를 저장하기 위한 Binary Serialization Format이다. - MongoDB의 Remote Procedure Call에 사용된다. MongoDB BSON Types Type Name Type Number Alias Notes Double 1 "double" String 2 "string" Object 3 "object" Array 4 "array" Binary data 5 "binData" Undefined 6 "undefined" ※ DEPRECATED ObjectId 7 "objectId" Boolean 8 "bool" Date 9 "date" Null 10 "null" Regular Expression 11 "r..

Computer Science/Tech Stack

[MongoDB] MongoDB Shell (mongosh) | 몽고DB 쉘

MongoDB Shell (\(\texttt{mongosh}\)) 몽고DB 쉘 Shell Instructions (쉘 명령어) show databases (=show dbs) - 현재 MongoDB에 생성된 데이터베이스들의 이름과 크기를 출력한다. show collections - 현재 데이터베이스에 생성된 Collection들의 이름을 출력한다. use - 데이터베이스를 선택한다. db.createCollection("") - 현재 데이터베이스에 Collection을 생성한다. - {"ok" : 1} 메시지가 출력되면 Collection이 정상적으로 생성된 것이다. Reference: MongoDB (URL) Reference: MongoDB Documentation (URL)

Computer Science/Tech Stack

[MongoDB] CRUD Instructions | CRUD 명령어

CRUD Instructions CRUD 명령어 (Create - Read - Update - Delete; 생성 - 조회 - 변경 - 삭제) - 데이터에 대한 생성, 조회, 변경, 삭제에 해당되는 명령어들을 살펴본다. (이들 4개 연산은 데이터베이스에서 기초가 되는 연산으로, 관례적으로 "CRUD"라 지칭한다.) Data Create Instructions (데이터 생성 명령어) \(\texttt{insertOne}\) Instruction Prototype db..insertOne( {"":, ...} ) - 하나의 Document를 \(\texttt{}\) Colleciton에 생성(입력)한다. \(\texttt{insertMany}\) Instruction Prototype db..insertMa..

Projects/Algorithmic Trading

[Algorithmic Trading] DB Structure | 데이터베이스 구조

DB Structure 데이터베이스 구조 - 알고리즘 트레이딩 시스템에서 사용되는 여러 데이터들을 저장할 데이터베이스의 구조를 설계한다. - 이때, DB는 MongoDB(몽고 DB)를 사용한다. DB Hierarchy (DB 계층구조) Database Collection Description stocklab code_info - 종목 코드 데이터 price_info - 종목별·일별 주가 데이터 corp_info - 기업 관련 데이터 credit_info - 종목별·일별 신용거래 현황 short_info - 종목별·일별 공매도 현황 agent_info - 종목별 기관·외인 투자 현황 order - 매매 주문 이력 Reference: 파이썬과 리액트를 활용한 주식 자동 거래 시스템 구축 (박재현 저, 위키북..

Computer Science/Tech Stack

[MongoDB] MongoDB Preview | 몽고DB 개요

MongoDB Preview 몽고DB 개요 (URL) MongoDB: The Application Data Platform Get your ideas to market faster with an application data platform built on the leading modern database. MongoDB makes working with data easy. www.mongodb.com Mongo DB Settings (몽고DB 설정) * Windows \(\texttt{cmd}\) Commands C:\>net start MongoDB MongoDB Server 서비스를 시작합니다.. MongoDB Server 서비스가 잘 시작되었습니다. C:\>net stop MongoDB Mongo..

Projects/Algorithmic Trading

[Algorithmic Trading] NASDAQ Data Link | 나스닥 데이터 링크

NASDAQ Data Link API (URL) 나스닥 데이터 링크 API Nasdaq Data Link The source for financial, economic, and alternative datasets, serving investment professionals. data.nasdaq.com NASDAQ Data Link Analysis Tools (URL) NASDAQ Data Link Analysis Tools - Python (URL)

Projects/Algorithmic Trading

[Algorithmic Trading] Web Crawler | 웹 크롤러

Web Crawler 웹 크롤러 - 웹 페이지에서 필요한 데이터만을 수집하여 저장하는 프로그램이다. - 알고리즘 트레이딩 시스템에서는 웹 크롤러를 통해 해당 주식 종목에 대한 여러 정성적·정량적 정보를 수집하여 트레이딩에 반영시킨다. Web Crawler for Naver Finance (네이버 금융 웹 크롤러) (URL) [Algorithmic Trading] Web Crawler for Naver Finance | 네이버 금융 웹 크롤러 Web Crawler for Naver Finance 네이버 금융 웹 크롤러 Reference: 파이썬과 리액트를 활용한 주식 자동 거래 시스템 구축 (박재현 저, 위키북스, 2020) dad-rock.tistory.com

lww7438
'분류 전체보기' 카테고리의 글 목록 (46 Page)