首页/量化教学/Pine量化入门/ Pine入门 02 :6行代码写出策略,止盈止损自动下单!
Pine入门 02 :6行代码写出策略,止盈止损自动下单!
2024年05月22日

参考代码:

//@version=5
strategy("双均线策略", overlay=true)

fastLength = input(9)
slowLength = input(18)
mafast = ta.ema(close, fastLength)
maslow = ta.ema(close, slowLength)
if ta.crossover(mafast, maslow)
    strategy.entry("多", strategy.long)
if ta.crossunder(mafast, maslow)
    strategy.entry("空", strategy.short)

学习交流,请联系:

截图-20240527104356

免责声明
这些信息和出版物并不意味着也不构成TradingView提供或认可的金融、投资、交易或其它类型的建议或背书。请在使用条款阅读更多信息。
要开始Pine量化创作,
请微信扫码,加入我们: