cf.py 472 Bytes
# 데이터베이스 접속정보
db_id="user"
db_pw="password"
db_port="3306"
db_ip="localhost"

# 모의투자 계좌번호
test_account_no="8147766711"

# 시뮬레이션을 돌리기 시작할 날짜
start_buying='20190101'

test_num=1
test_bot_name="AutoBot"+str(test_num)+"_Test"

# 실전투자 정보
real_account_no=""

real_num=1

# 데이터베이스 이름
real_bot_name="AutoBot"+str(real_num)
real_stockInfo_name="stock_info"
real_dailyInfo_name="daily_info"