목록Coding/Python (4)
Hy-yh
실제 공식 첫 번째 AU/AD 계산 - AU : 지난 14일 동안의 상승분의 합 / 14 - AD : 지난 14일 동안의 하락분의 합 / 14 이후의 AU/AD 계산 - AU : [13 * 이전 AU + 현재 상승분] / 14 - AD : [13 * 이전 AD + 현재 하락분] / 14 number 1 def RSI(data, period=14, column='close'): delta = data[column].diff(1) delta = delta.dropna() up = delta.copy() down = delta.copy() up[up 0] = 0 data['up'] = up data['down'] = down AVG_Gain = data['up'].roll..
'module' object is not callable 모듈 객체를 불러올 수 없다. 문제점 from tr2 class Main(): def __init__(self): super().__init__() tr2() 오류코드: 'module' object is not callable 개선 후 from tr2 import tr2 class Main(): def __init__(self): super().__init__() tr2() if __name__ == "__main__": Main() tr2이라는 클래스를 부를 목적으로 무심코 from만햇더니 모듈을 불러와지게됨 -> import를 붙여주니 해결 참고: devday.tistory.com/entry/TypeError-module-object-is-no..
자주쓰는것 Save : Ctrl + s Run : Ctrl + Shift + F10 주석처리 # : Ctrl + / 파일명 변경: Shift + F6