>pip install torch #최신버전의 tensrflow를 설치한다. >pip install tensorflow or >py -m pip install tensorflow or >python -m pip install --user --upgrade pip Collecting pip Using cached pip-20.1.1-py2.py3-none-any.whl (1.5 MB) Installing collected packages: pip WARNING: The scripts pip.exe, pip3.7.exe and pip3.exe are installed in 'C:\Users\howto\AppData\Roaming\Python\Python37\Scripts' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. Successfully installed pip-20.1.1
=> cannot import name 'pywrap_tensorflow' from 'tensorflow_core.python'
결국, "if you are using anaconda, python 3.7 is installed by default, so you have to downgrade it to 3.6:" 그래서.. >conda install python=3.6 실행함... 그리고, 다시.. # Requires the latest pip >pip install --upgrade pip
# Current stable release for CPU and GPU >pip install --ignore-installed --upgrade tensorflow
# Or try the preview build (unstable) >pip install tf-nightly
####################################################################################### # 8) macd_osc가0선이하에서 최저점을 돌아설때(최저가도 최저점을 돌아선다)(거래량도 점차 주는 현상이 있음) # macd와signal이0선 아래에 있어야 한다.단, 60이평선은 하락상태이며, # 전전봉은 음봉이고,현재봉은 양봉이면서,전봉이 최저점을 찍고 상승전환하는 현상을 로직에 반영함 # 또한, macd도 전봉을 기준으로 감소에서 증가로 돌아설때가 현재 매수타이밍이다#######################################################################################
로직No. M9
####################################################################################### # 9) macd_osc가0선이하에서 최저점을 돌아설때(최저가도 최저점을 돌아선다)(거래량도 점차 주는 현상이 있음) # macd와signal이0선 아래에 있어야 한다.단, 60이평선은 하락상태이며, # 양봉,음봉 상관없이,전전전봉부터 현재봉까지 최저가가 꾸준히 상승하고 # 또한, macd도 전봉을 기준으로 감소에서 증가로 돌아설때가 현재 매수타이밍이 된다. #######################################################################################