In the attachment you can find an example.If, for instance, I'm long and my stoploss is 3 points below my entry point, maybe the 3 points is also the setup to buy limit, but it is not my intention to buy for example in a panic selling.
Below is the code I used to try to solve the trouble. Can you suggest me a solution if any)
Thanks.
if (Position.MarketPosition != MarketPosition.Long)
{
EnterLongLimit(CTR, DonchianChannel(LEN).Lower[1], "Buy Limit");

Comment