金字塔决策交易系统

 找回密码
 

微信登录

微信扫一扫,快速登录

搜索
查看: 48|回复: 11

加仓策略如何写

[复制链接]

7

主题

27

帖子

27

积分

Rank: 1

等级: 新手上路

注册:
2024-12-16
曾用名:
发表于 2024-12-16 14:36 | 显示全部楼层 |阅读模式
请教下各位老师:
开多平空条件:最高突破30最高,(总资金三分之一仓)
开空平多条件:最低跌破30最低,(总资金三分之一仓)
止损:总资金亏1%止损
加仓:总资金赚1%加三分之一,加满为止
回复

使用道具 举报

31

主题

7734

帖子

7744

积分

Rank: 8Rank: 8

等级: 超级版主

注册:
2021-5-18
曾用名:
发表于 2024-12-16 14:39 | 显示全部楼层
if h=hhv(h,30) and holding<=0 then
begin
        sellshort(1,holding,marketr);
        buy(1,30%,marketr);
END

if l=llv(l,30) and holding>=0 then
begin
        sell(1,holding,marketr);
        buyshort(1,30%,marketr);
END

if OPENPROFITPER<-1/100 then
begin
        sellshort(1,holding,marketr);
        sell(1,holding,marketr);       
END

if OPENPROFITPER>1/100 then
begin
        buyshort(1,30%,marketr);
        buy(1,30%,marketr);       
END
金字塔提供一对一VIP专业技术指导服务,技术团队实时响应您的日常使用问题与策略编写。联系电话:021-20339086
回复

使用道具 举报

7

主题

27

帖子

27

积分

Rank: 1

等级: 新手上路

注册:
2024-12-16
曾用名:
 楼主| 发表于 2024-12-16 15:04 | 显示全部楼层
谢谢!
回复

使用道具 举报

7

主题

27

帖子

27

积分

Rank: 1

等级: 新手上路

注册:
2024-12-16
曾用名:
 楼主| 发表于 2024-12-16 15:19 | 显示全部楼层
老师在贴上发的原码我用中证1000的30分钟测试,显示如上图
截图202412161518559612.png
回复

使用道具 举报

31

主题

7734

帖子

7744

积分

Rank: 8Rank: 8

等级: 超级版主

注册:
2021-5-18
曾用名:
发表于 2024-12-16 15:22 | 显示全部楼层
就是钱不够了,你一值开开到后面就没钱
金字塔提供一对一VIP专业技术指导服务,技术团队实时响应您的日常使用问题与策略编写。联系电话:021-20339086
回复

使用道具 举报

7

主题

27

帖子

27

积分

Rank: 1

等级: 新手上路

注册:
2024-12-16
曾用名:
 楼主| 发表于 2024-12-16 15:24 | 显示全部楼层
技术008 发表于 2024-12-16 15:22
就是钱不够了,你一值开开到后面就没钱

那您就帮加一条开满仓就不开了吧
回复

使用道具 举报

31

主题

7734

帖子

7744

积分

Rank: 8Rank: 8

等级: 超级版主

注册:
2021-5-18
曾用名:
发表于 2024-12-16 15:26 | 显示全部楼层
if h=hhv(h,30) and holding<=0 then
begin
        sellshort(1,holding,marketr);
        buy(1,30%,marketr);
END

if l=llv(l,30) and holding>=0 then
begin
        sell(1,holding,marketr);
        buyshort(1,30%,marketr);
END

if OPENPROFITPER<-1/100 then
begin
        sellshort(1,holding,marketr);
        sell(1,holding,marketr);      
END

if OPENPROFITPER>1/100 and cash/(close*MULTIPLIER*TACCOUNT(41))>1 then
begin
        buyshort(1,30%,marketr);
        buy(1,30%,marketr);      
END
金字塔提供一对一VIP专业技术指导服务,技术团队实时响应您的日常使用问题与策略编写。联系电话:021-20339086
回复

使用道具 举报

7

主题

27

帖子

27

积分

Rank: 1

等级: 新手上路

注册:
2024-12-16
曾用名:
 楼主| 发表于 2024-12-16 15:31 | 显示全部楼层
技术008 发表于 2024-12-16 15:26
if h=hhv(h,30) and holding=0 then
begin
        sell(1,holding,marketr);

未定义的变量:CASH
回复

使用道具 举报

31

主题

7734

帖子

7744

积分

Rank: 8Rank: 8

等级: 超级版主

注册:
2021-5-18
曾用名:
发表于 2024-12-16 15:34 | 显示全部楼层

if h=hhv(h,30) and holding<=0 then
begin
        sellshort(1,holding,marketr);
        buy(1,30%,marketr);
END

if l=llv(l,30) and holding>=0 then
begin
        sell(1,holding,marketr);
        buyshort(1,30%,marketr);
END

if OPENPROFITPER<-1/100 then
begin
        sellshort(1,holding,marketr);
        sell(1,holding,marketr);      
END

if OPENPROFITPER>1/100 and cash(0)/(close*MULTIPLIER*TACCOUNT(41))>1 then
begin
        buyshort(1,30%,marketr);
        buy(1,30%,marketr);      
END
金字塔提供一对一VIP专业技术指导服务,技术团队实时响应您的日常使用问题与策略编写。联系电话:021-20339086
回复

使用道具 举报

7

主题

27

帖子

27

积分

Rank: 1

等级: 新手上路

注册:
2024-12-16
曾用名:
 楼主| 发表于 2024-12-16 15:41 | 显示全部楼层
这也不是我想要的,最多加仓三次就加满了啊,上面图一根K线,又开空又平空
截图202412161539439486.png
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 微信登录

本版积分规则

手机版|小黑屋|上海金之塔信息技术有限公司 ( 沪ICP备13035422号 )

GMT+8, 2024-12-22 18:14 , Processed in 0.225382 second(s), 24 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表