加仓与分批出场 [MC]
- 咨询内容:
加仓
(一)相同条件下的加仓:
1.进场语句:例如- if c>o then
- buy next bar at market;
加仓效果
(二)不同条件加仓
1.进场语句:例如- if condition1 then
- buy(“entry”) next bar at market;
- if condition2 then
- buy(“jiacang1”) next bar at market;
- if condition3 then
- buy(“jiacang2”) next bar at market;
- condition1 =c>o and marketposition=0
- condition2 =c>o and c[1]>o[1]
- condition3 =c>o and c[1]>o[1] and c[2]>o[2]
加仓效果
分批出场
(一)同一笔入场的多手持仓的相同条件的分笔出场
1. 分批出场开关:SameExitFromOneEntryOnce (详细解释参考帮助文档),例:
进场
- if c>o then
- buy 3 shares next bar at market;
- [SameExitFromOneEntryOnce = false];
- if c<o then
- sell 1 Contracts Next Bar At market;
(二)同一笔入场的多手持仓的不同条件的分笔出场- if condition1 then
- sell 1 Contracts total Next Bar At market;
- if condition2 then
- sell 1 Contracts total Next Bar At market;
- if condition3 then
- sell 1 Contracts total Next Bar At market;
平仓效果
(三)不同进场或不同条件不同入场名称的分批出场(按进场名称出场),
- if c>o and marketposition=0 then
- buy ("entry") next bar at market;
- if c>o and c[1]>o[1] then
- buy ("jiacang1") next bar at market;
- if c>o and c[1]>o[1] and c[2]>o[2] then
- buy ("jiacang2") next bar at market;
- if c[1]<o[1] then begin
- sell from entry("entry") next bar at market;
- sell from entry("jiacang1") next bar at market;
- sell from entry("jiacang2") next bar at market;
- end;
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?立即注册
加仓 - if c>o then
有思路,想编写各种指标公式,程序化交易模型,选股公式,预警公式的朋友
可联系技术人员 QQ: 1145508240 进行 有偿 编写!(不贵!点击查看价格!)
相关文章
-
没有相关内容