大家好 我想要问怎么改变FOR 循环的起始和终值
比如说 我现有一个DF读进来,然后
acc = df[df['成交时间']>=90500]
for mo in acc.index:
if df.iloc[mo,8] > 200:
buy = df.iloc[more+1,4]
out = 0
for mo in accumulate.index:
while out < -200:
out = out + df.iloc[mo+1,'vol']
我想要判断df.iloc[mo,8] > 200 后买进 然后之前的加总的值小于200卖出
我以为mo 可以连贯的.好像不是这样 要如何只做一次这个index就好
我要怎么控制这个循环的起始值呢? 或是有更好的解法 谢谢