I was just able to document an anomaly in the Paper Trader that I've experienced before. The attached screen shot shows the Trade History tab...note the P/L column for a break even trade. This is also displayed in the Unrealized P/L of the Summary tab for an open trade when current price = entry price.
This does not happen all the time, which is the frustrating thing. Today my stop had trailed down to B.E., and this began to happen, and my script generated the following error> Line:577, Paper Trade Broker must have Stop/Limit price...
Here are lines 576 - 577 of my system's script...
576: nAsk = getMostRecentAsk();
577: if ((vPaperTrade == 1) && (nBarIndex == 0)) vPTrade.Buy(getSymbol(), StopExitContracts, PaperTradeBroker.LIMIT, nAsk);
The first trade of the day worked it's way through this block of code with no problen at all, and then....BAM!! Gotcha! Perhaps someone at eSignal has some explanation for this? I doubt I'm the only one experiencing these quirks. TIA for any help.
___
JO
This does not happen all the time, which is the frustrating thing. Today my stop had trailed down to B.E., and this began to happen, and my script generated the following error> Line:577, Paper Trade Broker must have Stop/Limit price...
Here are lines 576 - 577 of my system's script...
576: nAsk = getMostRecentAsk();
577: if ((vPaperTrade == 1) && (nBarIndex == 0)) vPTrade.Buy(getSymbol(), StopExitContracts, PaperTradeBroker.LIMIT, nAsk);
The first trade of the day worked it's way through this block of code with no problen at all, and then....BAM!! Gotcha! Perhaps someone at eSignal has some explanation for this? I doubt I'm the only one experiencing these quirks. TIA for any help.
___
JO
Comment