1
I’m trying to get a list of schedules of a file (I already got), and schedule according to the time: purchase scheduled for 15:30, at this time I will run the purchase (API.Buy)
# alimentação
sinal vem do arquivo TXT
lista = (23,5,2020,18:10,EURJPY-OTC,PUT)
today = datetime.today()
for sinal in lista:
dados = sinal.split(',')
# Divide variáveis
dados[3] = datetime.strptime(dados[3], '%H:%M').time()
#compara horários
if(dados[3]==today):
API.buy(entrada,dados[4],dados[5],5)
#valor, moeda, direção, tempo;
print("Operação efetuada...")