“开多以来的阴线收盘价开多;”
这句话是不是这个意思:
在开多之后的第一根阴线上,以当根k线的收盘价开多?
if holding>0 and isdown then buy(1,1,limitr,close);
if holding<0 and isup then buyshort(1,1,limitr,close);
if holding>0 and isdown then buy(1,1,limitr,close); if holding<0 and isup then buyshort(1,1,limitr,close);与我的“开多以来的阴线收盘价开多;”在实盘中一样吗? |
if holding>0 and isdown then buy(1,1,limitr,close); if holding<0 and isup then buyshort(1,1,limitr,close);与我的“开多以来的阴线收盘价开多;”在实盘中一样吗? |
是的,开多后的阴线收盘价开多,用户需要用走完k线的下单模式
if holding>0 and isdown and close<enterprice then sell(1,0,limitr,close);
if holding<0 and isup and close>enterprice then sellshort(1,0,limitr,close);