Information
Username: | 9582255 |
Member since: | 22 May 2015 |
Last login: | 22 May 2015 |
Status: | Active |
Activity
Where | Created | Comments |
---|---|---|
Algorithms | 0 | 1 |
Forum Topics | 1 | 1 |
Jobs | 0 | 0 |
Username: | 9582255 |
Member since: | 22 May 2015 |
Last login: | 22 May 2015 |
Status: | Active |
Where | Created | Comments |
---|---|---|
Algorithms | 0 | 1 |
Forum Topics | 1 | 1 |
Jobs | 0 | 0 |
May you take a look of line 76:
if (position.TradeType == TradeType.Sell && isProtected)
{
if (newStopLoss < Symbol.Bid) //COULD BE SYMBOL.ASK instead of SYMBOL.BID?
return;
if (position.StopLoss - newStopLoss < Symbol.TickSize)
return;
}