분류 전체보기 805

2022년 27주차 '진급 심사 통과'

Weekly growth 진급 심사 통과 이번 주에는 진급 심사가 있었고 무사히 진급할 수 있었다. 앞으로 더 높은 책임감과 오너십을 가지고 업무에 임해야겠다고 다짐했다. 나의 부족한 부분도 느낄 수 있었다. 회사가 추구하는 비전과 가치에 대해 더 깊이 이해할 필요가 있다고 느꼈다. 앞으로 고객에게 주는 가치를 어떻게 더 극대화할 수 있을지 더 많이 공부하고 적용해보고 싶다. 7월 사이드 챌린지 - 주식 투자 자동화 7월 사이드 챌린지로 주식매매 자동화를 구현할 예정이다. 레퍼런스 링크 -> https://youtu.be/4DzGOpsT3bw 나아가 퀀트 전략을 자동매매와 연결해보고 싶다. 마켓 컬리 디벨로퍼 밋업 온라인으로 진행된 '마켓 컬리 디벨로퍼 밋업'에 참여했다. 밋업이 신청자에 한해서만 공개했..

SQL with Harry Potter: Sorting Hat Comparators

There is truly no magic in the world; the Hogwarts Sorting Hat is SQL-based, its decision-making powers are common operators and prospectIve students are merely data - names, and two columns of qualities. students id name quality1 quality2 Slytherin are being quite strict this year and will only take students who are evil AND cunning. Gryffindor will take students who are brave but only if their..

SQL Basics: Truncating

Given the following table 'decimals': decimals table schema id number1 number2 Return a table with a single column towardzero where the values are the result of number1 + number2 truncated towards zero. Solution: SELECT TRUNC(number1 + number2) AS towardzero FROM decimals Result: towardzero 1 2 0 2 2 1 Reference: ROUND / TRUNC / MOD 반올림과 버림 그리고 나머지값 구하기 round .round(data) : 반올림하여 정수로 변환 .round(d..

Countries Capitals for Trivia Night (SQL for Beginners #6)

Your friends told you that if you keep coding on your computer, you are going to hurt your eyes. They suggested that you go with them to trivia night at the local club. Once you arrive at the club, you realize the true motive behind your friends' invitation. They know that you are a computer nerd, and they want you to query the countries table and get the answers to the trivia questions. Schema ..

2022년 26주차 '온보딩 회고 발표'

Weekly growth '슬기로운 퀀트투자' 6 챕터 및 포스팅 -> '슬기로운 퀀트투자' 완독 🚀 배우고 성장한 것 슬기로운 퀀트투자를 완독 했다. 퀀트가 뭔지 알게 되었으나 코드를 상세히 설명할 수준은 아니다. 기본적인 핀터스텔라 작동 방식은 이해하였다. 앞으로 보완할 것 대충 훑어보는 식으로 보았기 때문에 흐름만 파악했다. 퀀트 관련 글을 쓰려고 했는데 다른 일들이 많아 쓸 시간을 내지 못했다. 앞으로 [할수있다 퀀트투자]와 다른 퀀트 강의를 학습하면서 앞으로 보완해나갈 예정 7월에는 조코딩의 자동매매 튜토리얼을 따라 할 예정이다. (나만의 합성전략을 만들어 실거래 적용하기) 온보딩 회고 발표 오는 주에는 온보딩 회고 발표가 있었다. PPT를 준비해 일정이 있었던 마케팅팀을 제외하고 전사원 대상으..