比如SHFE.rb2005 螺纹,60分钟线,价格一突破20日均线就马上买入一手,并且设置5个点的止损,
该怎么写代码。谢谢
klines = api.get_kline_serial(symbol, 60 * 60)
ma1 = tafunc.ma(klines.close, 1)
ma20 = tafunc.ma(klines.close, 20)
crossup = tafunc.crossup(ma1, ma20) crossdown = tafunc.crossdown(ma1, ma20)