写点什么

量化合约对冲交易软件|合约一键跟单社区平台系统开发源码

  • 2023-03-21
    广东
  • 本文字数:524 字

    阅读完需:约 2 分钟

“量化交易”有着两层含义:系统 I34-开发 I633-源码 53I9,一是从狭义上来讲,是指量化交易的内容,将交易条件转变成为程序,自动下单;二是从广义上来讲,是指系统交易方法,就是一个整合的交易系统。

strategy("test", overlay = true)

varip a = na

varip highPrice = na

varip isTrade = false

varip offset = 30

if not barstate.ishistory and not isTrade

strategy.entry("test 1", strategy.long, 1)
strategy.exit("exit 1", "test 1", 1, trail_price=close+offset, trail_offset=offset)
a := close + offset
runtime.log("每点价格为:", syminfo.mintick, ",当前close:", close)
isTrade := true复制代码
复制代码

if close > a and not barstate.ishistory

highPrice := na(highPrice) ? close : highPrice
highPrice := close > highPrice ? close : highPrice复制代码
复制代码

plot(a, "trail_price 触发线")

plot(strategy.position_size>0 ? highPrice : na, "当前最高价")

plot(strategy.position_size>0 ? highPrice-syminfo.mintick*offset : na, "移动止损触发线")

作者:用户 6134328607836

链接:https://juejin.cn/post/7212890238334238781

来源:稀土掘金

著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

用户头像

还未添加个人签名 2022-05-23 加入

区块链项目开发,咨询weixin:hkkf5566

评论

发布
暂无评论
量化合约对冲交易软件|合约一键跟单社区平台系统开发源码_开发微hkkf5566_InfoQ写作社区