=(
Nevermind.......It said the EA was corrupted and needed to be recompiled. I did and it works now.
slipshod wrote:EA's doing well so far today - already 1% locked in and its only the Asian session. Edit: 1.8%
The lock-in feature's so effective I feel that fixed per-trade TP levels are actually becoming superfluous.
It is really incredible, the Cowboy IBFX 10K demo just closed when 5% gain reached.fx8000 wrote:Thank you MrLong for version 2.0. The ea is trading beautifully this morning.
I loaded the ea at London open today OOTB, and the account is up 3.3 %.
Cheers,
peter
In the summary line on the dashboard, under the rows of pairs being traded and above the Delete/Close buttons, there's Locked %. That's how much is locked in, and if you're watching while the market moves in your favour you can see it increase correctly.fx8000 wrote:slipshod wrote:EA's doing well so far today - already 1% locked in and its only the Asian session. Edit: 1.8%
The lock-in feature's so effective I feel that fixed per-trade TP levels are actually becoming superfluous.
Hi Slipshod,
How do you check to see if the % trailing stop is working ?
Cheers,
peter
Code: Select all
int headCellHeight = 2, // in lines
footCellHeight = 2;
extern int mainCellHeight = 35;
Code: Select all
tbRemoveAll(hwnd);
CloseAllButtonY = (12 + headCellTop + (headCellHeight + mainCellHeight + footCellHeight) * rFontSize);
btnRefresh = tbPutObject(hwnd, "button", 715 , CloseAllButtonY, 155, 20, "Refresh Grid");
btnCloseAll = tbPutObject(hwnd, "button", 890 , CloseAllButtonY, 155, 20, "Close All Open"); // hwnd,type,x,y,w,h,label
btnDeletePending = tbPutObject(hwnd, "button", 1065 , CloseAllButtonY, 155, 20, "Delete Pending");
Hi Slipshod,slipshod wrote:In the summary line on the dashboard, under the rows of pairs being traded and above the Delete/Close buttons, there's Locked %. That's how much is locked in, and if you're watching while the market moves in your favour you can see it increase correctly.fx8000 wrote:slipshod wrote:EA's doing well so far today - already 1% locked in and its only the Asian session. Edit: 1.8%
The lock-in feature's so effective I feel that fixed per-trade TP levels are actually becoming superfluous.
Hi Slipshod,
How do you check to see if the % trailing stop is working ?
Cheers,
peter
Code: Select all
void refreshGrid()
{
if (showDisplay)
{
if ( GridMethod < 1 ) // simplex
{
UpdateGrid();
}
else
{
DisplayGrid();
}
}
}
Hellopatman wrote:Mr Long,
should showDisplay be used in refreshGrid?
PatCode: Select all
void refreshGrid() { if (showDisplay) { if ( GridMethod < 1 ) // simplex { UpdateGrid(); } else { DisplayGrid(); } } }