Rss & SiteMap

金字塔客服中心 - 专业程序化交易软件提供商 http://www.weistock.com/bbs/

专业程序化软件提供商
共18 条记录, 每页显示 10 条, 页签: [1] [2]
[浏览完整版]

标题:求助策略编写模型

1楼
hldx100 发表于:2011/10/31 7:44:13

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

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

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

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

2楼
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
 

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

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

 

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

5楼
26327756l 发表于:2011/10/31 9:40:46

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

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

6楼
hldx100 发表于:2011/10/31 10:17:48

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

7楼
hldx100 发表于:2011/10/31 10:28:51
你好,我的这个主题使用序列模式怎样编写?劳驾了!
8楼
fly 发表于:2011/10/31 10:41:35

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

 

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

9楼
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平空开多,帮忙分析一下好吗?
10楼
26327756l 发表于:2011/11/1 11:02:38
什么品种 什么k线模式?
共18 条记录, 每页显示 10 条, 页签: [1] [2]


Powered By Dvbbs Version 8.3.0
Processed in .87891 s, 2 queries.