金字塔决策交易系统

 找回密码
 

微信登录

微信扫一扫,快速登录

搜索
查看: 41|回复: 5

移动止盈问题

[复制链接]

29

主题

63

帖子

63

积分

Rank: 2

等级: 标准版

注册:
2021-6-30
曾用名:
发表于 2024-11-11 13:33 | 显示全部楼层 |阅读模式
//判断当前持仓状态下的最大盈利
win:=0;
win2:=0;
if holding > 0 and enterbars > 0 then
begin
  win:=(c-enterprice)/enterprice*100; //记录最大盈利
  if win>maxprofit then
    maxprofit:=win;

  win2:=(maxprofit-win)/maxprofit*100; //最大盈利后的回调幅度
end
if holding < 0 and enterbars > 0 then
begin
  win:=(enterprice-c)/enterprice*100; //记录最大盈利
  if win > maxprofit then
    maxprofit:=win;

win2:=(maxprofit-win)/maxprofit*100; //最大盈利后的回调幅度
end

//出现最高盈利后,回落到盈利的50%平仓出场
多止赢:SELL(win2>=50 and openprofit> 0 and holding>0, holding,market);
空止赢:SELLSHORT(win2>=50 and openprofit> 0 and holding<0, holding,market);

请问以上程序为什么没有能实现移动止盈呢?如图:



截图202411111333287337.png
回复

使用道具 举报

30

主题

7075

帖子

7085

积分

Rank: 8Rank: 8

等级: 超级版主

注册:
2021-5-18
曾用名:
发表于 2024-11-11 13:36 | 显示全部楼层
多止赢:SELL(openprofit<hhv(openprofit,enterbars)*0.5 and openprofit> 0 and holding>0, holding,market);

不用自己记录,直接用hhv(openprofit,enterbars)就表示开仓以来最大的浮盈了
金字塔提供一对一VIP专业技术指导服务,技术团队实时响应您的日常使用问题与策略编写。联系电话:021-20339086
回复

使用道具 举报

29

主题

63

帖子

63

积分

Rank: 2

等级: 标准版

注册:
2021-6-30
曾用名:
 楼主| 发表于 2024-11-13 22:08 | 显示全部楼层
技术008 发表于 2024-11-11 13:36
多止赢:SELL(openprofit 0 and holding>0, holding,market);

不用自己记录,直接用hhv(openprofit,enter ...

空止赢:SELLSHORT(openprofit<hhv(openprofit,enterbars)*0.5 and openprofit> 0 and holding<0, holding,market);

请问空头止盈这样写对吗?
回复

使用道具 举报

19

主题

1万

帖子

1万

积分

Rank: 8Rank: 8

等级: 超级版主

注册:
2021-5-18
曾用名:
FireScript
发表于 2024-11-14 09:19 | 显示全部楼层
本帖最后由 技术009 于 2024-11-14 09:21 编辑

可以的。

金字塔提供一对一VIP专业技术指导服务,技术团队实时响应您的日常使用问题与策略编写。联系电话:021-20339086
回复

使用道具 举报

29

主题

63

帖子

63

积分

Rank: 2

等级: 标准版

注册:
2021-6-30
曾用名:
 楼主| 发表于 2024-11-14 10:34 | 显示全部楼层

请问相应的止损应该怎么写呢?
回复

使用道具 举报

19

主题

1万

帖子

1万

积分

Rank: 8Rank: 8

等级: 超级版主

注册:
2021-5-18
曾用名:
FireScript
发表于 2024-11-14 10:40 | 显示全部楼层
止损 直接使用 openprofit或者OPENPROFITPER 作为平仓判断条件就行了。
金字塔提供一对一VIP专业技术指导服务,技术团队实时响应您的日常使用问题与策略编写。联系电话:021-20339086
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-16 00:21 , Processed in 0.386767 second(s), 25 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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