Finance

[python, trading]algobot 설치 및 실행 (Window에서)

algobot을 위한 환경 설정 algobot 받기 : https://github.com/ZENALC/algobot 위 순서대로 진행시 pipenv install –dev 시 에러나면Visual Studio Build Tool을 설치 다시 해 본다.https://visualstudio.microsoft.com/ko/downloads/ 위의 처럼 했는데도 어래 처럼 python 경로가 맞지 않다고 나오면 아래 그림처럼 현재 python 버전을 제외한 기존에 설치 되었던 python 버전을 registry를 전부 삭제 한다 algobot은 ta-lib를 사용하는데 pipenv install -dev시에 OS가 […]

[python, trading]algobot 설치 및 실행 (Window에서) Read More »

[Python] Synology NAS에서 바이낸스(Binance) 거래데이터 수집하기

데이터 설명 : https://github.com/binance/binance-public-data Binance에서 거래 데이터를 수집하는 방법은 이전 글 비트멕스(BitMex)에서 거래데이터 수집하기를 참조하면 된다. 바이낸스 데이터 제공 URL : https://data.binance.vision/?prefix=data/ , https://www.binance.com/en/landing/data NAS 스케쥴러 등록은 이전글 참조 수집프로그램 : binance_mwget2.zip , s.zip 거래데이터를 받을 코인은 아래 coin_lst에 추가 하면 되고 코인명으로 폴더가 만들어 지고 그 폴더에 데이터가 수집된다.

[Python] Synology NAS에서 바이낸스(Binance) 거래데이터 수집하기 Read More »

[Python] mlfinlab에서 portfoliolab 분리

Hi @everyone, We are happy to announce that we have released PortfolioLab which now contains all of the implementations on portfolio optimisation from MlFinLab. It’s very important that you please move on over to the new library as we will be deprecating that functionality that exists in MlFinLab, early February. pip install portfoliolab Documentation: https://hudson-and-thames-portfoliolab.readthedocs-hosted.com/en/latest

[Python] mlfinlab에서 portfoliolab 분리 Read More »

[Python] Synology NAS에서 BitMEX 거래데이터 수집하기

NAS에 Python3이 설치 되어 있지 않다면 먼저 아래와 같이 Python3 패키지를 먼저 설치 한다. 2. NAS 콘솔에 접속하여 pip 을 설치 한다. pip을 설치 하기 위해 콘솔에서 root로 작업한다. 3. BitMEX 에서 데이터를 가져 오기 위한 program 에서 wget package를 사용하기 때문에 설치 해준다. 그 외 필요한 package가 더 있으면 root 계정에서 “python3 -m pip

[Python] Synology NAS에서 BitMEX 거래데이터 수집하기 Read More »

[Python] Advances in Financial Machine Learning – Chap01

도서 Advances in Financial Machine Learning (한국어판 : 실전 금융 머신 러닝 완벽 분석) chaper 01의 python 구현 “Tick, Volume, Dollar Volume Bars” jupyter notebook을 아래 깃허브를 참조하면됨. 일부 내용을 수정 하였음 원본 : https://github.com/BlackArbsCEO/Adv_Fin_ML_Exercises 수정 : https://github.com/mrchaos/Adv_Fin_ML_Exercises 틱 데이터를 읽어 올 때 중복제거 하는 부분을 주석 처리 했음, 실제 틱 데이터는 중복하여 여러건이 있을

[Python] Advances in Financial Machine Learning – Chap01 Read More »