--- In [email protected], "prasantaroy36" <prasantaro...@...> wrote:
>
> dear friends,
> 
> After buy & short , my exit price will be buyprice+200 points &shortprice -200
> points. For backtesting purpose with above criteria what will be the actual 
> logic . 
> 
> Thanks


I am new but will have a go.
This is a profit stop that will close the trade when profit level crossed. Read 
the ApplyStop function in Help Guide for how to use them in formula.

Buy = Cross(RSI(), 30);
Sell = 0;
Short = Cross(70, RSI());
Cover = 0;
ApplyStop(stopTypeProfit, stopModePoint, 200, 2);


Reply via email to