6월, 2018의 게시물 표시

주식 자동매매 시스템

파이썬을 이용한 주식 자동매매 시스템

이미지
파이썬을 이용한 주식 자동매매 시스템 INDEX 환경구축 키움증권 API - 연결테스트 키움증권 API - 계좌정보 조회 키움증권 API - 주문 키움증권 API - 종목정보 가져오기 포트폴리오 - 종목, 업종별 자산 포트폴리오 한국투자증권 API API reference 키움 OpenAPI+ 개발가이드 한국투자증권 OpenAPI 다운로드 및 가이드 Design https://www.design-seeds.com/in-nature/succulents/cacti-color-2/ https://create.piktochart.com/dashboard

git-bash로 source 관리하기

이미지
git-bash 설치 git으로 관리할 프로젝트 폴더 안에서 git-bash를 실행한다. # git 저장소 생성 # 관리 할 프로젝트의 workspace를 repository로 선언 $ git init # 변경된 사항을 stage에 올린다 $ git add # stage에 올라간 변경사항을 commit $ git commit # 원격 저장소에 ... $ git push # 현재 상태 확인 $ git status git add .  현재 폴더 + 하위 폴더, 파일을 한번에 stage에 추가하겠다 git commit  > vi editor가 뜸 message 작성하라고 git commit -m ""  commit message 등록 git remote add origin https://github.com/fksdud456/TIL.git git push -u origin master 다른 remote가 설정되어 있는 경우, clone 해온 경우 $ git remote rm origin $ git remote add ....

[GitHub Pages] Git을 이용한 web page 배포

이미지
github에서 repository를 생성한다 Repository의 이름은  사용자ID .github.io 로 생성해야 한다.  본인의 ID를 정확하게 써줘야하는 것이 GitHub Page를 생성하는 규칙이므로 스펠링도 틀리면 안된다. 만들어둔 웹 프로젝트를 repository에 push한다  $ git remote add origin https://github.com/fksdud456/fksdud456.github.io.git $ git push -u origin master 웹페이지 접속 접속 URL : https:// 사용자id .github.io/ index.html이 main 페이지이기 때문에 꼭 index.html 파일이 있어야한다. Web page 참고

참고할만한 기술블로그

이미지
spoqa 기술블로그 우아한형제들 기술블로그 Kakao 기술블로그

[Android] Tablayout에서 Fragment로 Google Map 사용방법

Tablayout > 3개의 Fragment를 Tab을 누를 때마다 이동하게 만든다 먼저 MainActivity에서는 Tablayout와 ViewPager를 통해 3개의 Fragment가 생성될 수 있도록 한다. MainActivity / activity_main.xml  activity_main.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context=".MainActivity"> <android.support.design.widget.TabLayout android:id="@+id/tablayout" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="#ffffff" app:tabGravity="fill" app:tabIndicatorColor="@color/colorIndicator" app:tabMode="fixed" app:tabSelectedTextColor="@col