자동매매 4

[python] 코인 자동 매매 프로그램 만들기 (4) - 메세지 보내기

안녕하세요 포스팅이 늦어졌네요. 코로나 및 코로나 후유증도 심하게 오고 키우던 반려견도 보내는 절차때문에 일상생활이 힘들어서 포스팅을 못하게 되었습니다. (게으른 핑계 충 ㅠ) 텔레그램 메세지 보내기 from Common.Environment import config import requests def send_message(message): url = f"https://api.telegram.org/bot{config.telegram_token}/sendMessage?chat_id={config.chat_id}&text={message}" print(requests.get(url).json()) # this sends the message if __name__ == '__main__': # print(..

[python] 코인 자동 매매 프로그램 만들기 (3) - 설정 관리

이전 포스팅에는 바이낸스 가입, API 신청까지 했었습니다 더보기 2022.05.26 - [프로그래밍/Python] - [python] 코인 자동 매매 프로그램 만들기 (2) - 바이낸스 [python] 코인 자동 매매 프로그램 만들기 (2) - 바이낸스 준비 1. 개인 계정 생성 레퍼럴로 가입 해야되는 이유는 수수료 할인 혜택이 있기 때문입니다. https://accounts.binance.com/en/register?ref=338689232 Log In | Binance login-description accounts.binance.c.. qratedev.tistory.com 2022.05.23 - [프로그래밍/Python] - [python] 코인 자동 매매 프로그램 만들기 (1) - 환경 구성 이..

[python] 코인 자동 매매 프로그램 만들기 (2) - 바이낸스

준비 1. 개인 계정 생성 레퍼럴로 가입 해야되는 이유는 수수료 할인 혜택이 있기 때문입니다. https://accounts.binance.com/en/register?ref=338689232 Log In | Binance login-description accounts.binance.com 2. 이메일 또는 핸드폰 가입 버튼 클릭 3. 국가설정 4. 개인회원/기업회원 선택창 5. 계정 생성 & 인증 과정 5.1. 이 밑으로는 이미 가입을 진행한 상태라 저는 중복가입 상태이므로 진행이 안되서 다른분들 글 링크보고 가입진행하시면 됩니다. 바이낸스 가입방법 6. API Key 생성 바이낸스 로그인 후 https://www.binance.com/en/my/settings/api-management API Ma..

[python] 코인 자동 매매 프로그램 만들기 (1) - 환경 구성

준비 더보기 2020.12.23 - [프로그래밍/Python] - [python] pandas, dataframe 설치 [python] pandas, dataframe 설치 명령 프롬프트 창에서 pip install pandas만 실행해주면 설치가 된다. pip install pandas pip install dataframe pip install numpy==1.19.3 pip install matplotlib * numpy version은 2020.12.23 기준 1.19.4로.. qratedev.tistory.com 2022.02.04 - [프로그래밍/Python] - [Python] 파이참 설치 및 아나콘다 환경설정 개발환경 python, pycharm 최신버전 1. 프로젝트 생성 프로젝트명: c..

반응형