[求助]请帮忙写一个例子 [金字塔]
-
咨询内容:
满足条件A时,为买入参考信号,出现信号时的价位为参考信号价位1。当价格自参考信号价位1回落X价位时买入,止损幅度为实际买入价和参考信号价1的价差。满足条件B时,为卖出参考信号,出现信号时的价位为参考信号价位2.当价格自参考信号价位2上升X价位时卖出,止损幅度为实际卖出价和参考信号价2的价差。这实际上是一个回调买入的策略思路。搜了一下论坛没有找到类似的参考,所以想麻烦你们给写一个作为参考。谢谢。
-
金字塔客服:
图表交易吗?图表取不到实际买入价,只能取图上虚拟买入价位enterprice
来源:程序化久久网( WWW.CXH99.COM )
-
用户回复:
enterprice即可。仅作参考。
-
网友回复:
VARIABLE:n=0,m=0;
if a then n:=c;
if n-l>=x and holding=0 then buy(1,1,marketr);
if enterprice-c>=abs(enterprice-n) and holding>0 then sell(1,1,marketr);
if b then m:=c;
if h-m>=x and holding=0 then buyshort(1,1,marketr);
if c-enterprice>=abs(enterprice-m) and holding<0 then sellshort(1,1,marketr)
有思路,想编写各种指标公式,程序化交易模型,选股公式,预警公式的朋友
可联系技术人员 QQ: 511411198 进行 有偿 编写!(不贵!点击查看价格!)
相关文章
-
没有相关内容