以文本方式查看主题

-  金字塔客服中心 - 专业程序化交易软件提供商  (http://222.73.7.161/bbs/index.asp)
--  策略编写求助区  (http://222.73.7.161/bbs/list.asp?boardid=11)
----  求助策略编写模型  (http://222.73.7.161/bbs/dispbbs.asp?boardid=11&id=8669)

--  作者:hldx100
--  发布时间:2011/10/31 7:44:13
--  求助策略编写模型

当最新价高于开盘价时开多单,当最新价低于开盘价时开空单。

在持有多单时,当最新价低于开仓价10点时,平多开空,

在持有空单时,当最新价高于开仓价10点时,平空开多。

请帮忙这个公式怎样编写?


--  作者:26327756l
--  发布时间:2011/10/31 8:38:04
--  

仅供参考

 

//当最新价高于开盘价时开多单,当最新价低于开盘价时开空单。
if c>o then
begin
sellshort(holding<0,0,market);
buy(holding=0,1,market);
end
if c<o then
begin
sell(holding>0,0,market);
buyshort(holding=0,market);
end
//在持有多单时,当最新价低于开仓价10点时,平多开空,
if holding>0 then
begin
   if c<ENTERPRICE-10*mindiff then
      begin
        sell(holding>0,0,market);
         buyshort(holding=0,1,market);
      end
end

//在持有空单时,当最新价高于开仓价10点时,平空开多。
if holding<0 then
begin
   if c>ENTERPRICE+10*mindiff then
      begin
         sellshort(holding<0,0,market);
         buy(holding=0,1,market);
      end
end
 


--  作者:hldx100
--  发布时间:2011/10/31 8:57:20
--  
你好,我想用最新价作为开平仓条件,不是收盘价c,怎样把公式中的所有的c换成最新价?拜托!
--  作者:fly
--  发布时间:2011/10/31 9:30:38
--  

收盘价定义:最新的一笔成交价.

 

也就是说,在盘中有行情的时候,CLOSE就是最新价


--  作者:26327756l
--  发布时间:2011/10/31 9:40:46
--  

在函数类表里的动态行情中 有一个DYNAINFO(7)

你看一下 是不是你要的最新价。


--  作者:hldx100
--  发布时间:2011/10/31 10:17:48
--  

请问这个公式的运行模式序列模式吗?我想使用序列模式,刚才发帖时我忘说明了,不好意思。


--  作者:hldx100
--  发布时间:2011/10/31 10:28:51
--  
你好,我的这个主题使用序列模式怎样编写?劳驾了!
--  作者:fly
--  发布时间:2011/10/31 10:41:35
--  

用ENTERLONG的下单语句--在序列模式下,不能实现您的功能.

 

如果非要用序列,请使用后台程序化交易.


--  作者:hldx100
--  发布时间:2011/11/1 10:57:11
--  

你好,帮忙看一下这个公式运行后和策略不符是什么原因?

//当最新价高于开盘价时开多单,当最新价低于开盘价时开空单。
if c>o then
begin
sellshort(holding<0,0,thisclose);
buy(holding=0,1,thisclose);
end
if c<o then
begin
sell(holding>0,0,thisclose);
buyshort(holding=0,thisclose);
end
//在持有多单时,当最新价低于开仓价10点时,平多开空,
if holding>0 then
begin
   if c<ENTERPRICE-10*mindiff then
      begin
        sell(holding>0,0,thisclose);
         buyshort(holding=0,1,thisclose);
      end
end

//在持有空单时,当最新价高于开仓价10点时,平空开多。
if holding<0 then
begin
   if c>ENTERPRICE+10*mindiff then
      begin
         sellshort(holding<0,0,thisclose);
         buy(holding=0,1,thisclose);
      end
end

10:30开空27600,10:33平空开多27570,按照策略应该27610平空开多,帮忙分析一下好吗?
--  作者:26327756l
--  发布时间:2011/11/1 11:02:38
--  
什么品种 什么k线模式?