您现在的位置:程序化交易>> 期货公式>> (MC)multicharts>> MC知识>>正文内容

加仓与分批出场 [MC]

  • 咨询内容: 加仓
    (一)相同条件下的加仓:

           1.进场语句:例如  
    1. if  c>o  then
    2.    buy next bar at market;
    复制代码       2.设置加仓
             
             加仓效果
             
    (二)不同条件加仓
            1.进场语句:例如
    1. if  condition1  then
    2.      buy(“entry”) next bar at market;
    3. if  condition2  then
    4.      buy(“jiacang1”) next bar at market;
    5. if  condition3  then
    6.      buy(“jiacang2”)  next bar at market;
    复制代码
    1. condition1 =c>o and marketposition=0
    2. condition2 =c>o and c[1]>o[1]
    3. condition3 =c>o and c[1]>o[1] and c[2]>o[2]
    复制代码         2.加仓设置:
               
              加仓效果
             
         
    分批出场
    (一)同一笔入场的多手持仓的相同条件的分笔出场
             1. 分批出场开关:SameExitFromOneEntryOnce (详细解释参考帮助文档),例:
                 进场
    1.   if c>o then
    2.      buy 3 shares  next bar at market;
    复制代码分批出场      
    1. [SameExitFromOneEntryOnce = false];
    2. if c<o then
    3.    sell 1 Contracts Next Bar At market;
    复制代码           分批出场效果
               


    (二)同一笔入场的多手持仓的不同条件的分笔出场    
    1. if condition1 then
    2.     sell 1 Contracts total Next Bar At market;
    3. if condition2 then
    4.     sell 1 Contracts total Next Bar At market;
    5. if condition3  then
    6.     sell 1 Contracts total Next Bar At market;
    复制代码         通过total 每次固定只平1手
            平仓效果
            

    (三)不同进场或不同条件不同入场名称的分批出场(按进场名称出场),
             
    1. if  c>o and marketposition=0   then
    2.     buy ("entry") next bar at market;
    3. if  c>o and c[1]>o[1]   then
    4.     buy ("jiacang1") next bar at market;
    5. if  c>o and c[1]>o[1] and c[2]>o[2]  then
    6.     buy ("jiacang2")  next bar at market;
    7. if c[1]<o[1] then begin
    8.    sell from entry("entry") next bar at market;
    9.    sell from entry("jiacang1") next bar at market;
    10.    sell from entry("jiacang2") next bar at market;
    11. end;
    复制代码          出场效果 :
               

    本帖子中包含更多资源

    您需要 登录 才可以下载或查看,没有帐号?立即注册

    加仓

 

有思路,想编写各种指标公式,程序化交易模型,选股公式,预警公式的朋友

可联系技术人员 QQ: 1145508240  点击这里给我发消息进行 有偿 编写!不贵!点击查看价格!


【字体: 】【打印文章】【查看评论

相关文章

    没有相关内容