跟踪止盈

请问一下老师:  

系统带的TrailStop 名称: 触发跟踪止盈 和下面的写法功能上有什么不同,核心区别是什么?

If(MarketPosition==1 And BarsSinceEntry>0 And HighestAfterEntry>=EntryPrice*(1+TrailingStart/1000))

       {

           If(Low <=  HighestAfterEntry[1]-EntryPrice*TrailingStop/1000)

           {

               MyPrice = HighestAfterEntry[1]-EntryPrice*TrailingStop/1000;

               If(Open < MyPrice) MyPrice = Open;            

               Sell(0,myprice);

               bOut = True;

           }

       }

        If(MarketPosition==-1 And BarsSinceEntry>0 And LowestAfterEntry<=EntryPrice*(1-TrailingStart/1000))

       {    

           If(High >= LowestAfterEntry[1] + EntryPrice*TrailingStop/1000)

           {

               MyPrice = LowestAfterEntry[1] + EntryPrice*TrailingStop/1000;

               If(Open > MyPrice) MyPrice = Open;            

               BuyToCover(0,MyPrice);

               bOut = True;            

           }        

       }

跟踪止盈的讲解
跨周期跟踪止盈策略
不能直接止盈,只能触发跟踪止盈吗?
关于达到预定盈利之后启动跟踪止盈,
关于软件自带的触发跟踪止盈公式的具体应用
触发跟踪止盈的百分比,是和哪个比较的,除的分母是哪个,保证金?还是成本市值?
跟踪止损
小白求助大佬,一个关于移动止盈的策略无法移动
超级炒手跨日单是不是也自动跟踪
模式运行 是否一直运行的问题

系统自带的那个是作为模式的组件,合成模式的时候使用的。

区别不是很大。

只不过是做了一些泛用性的处理

谢谢