stevehopwoodforex.com
https://www.stevehopwoodforex.com/phpBB3/
Print view

Multi 10:4 Trader EA
https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?t=1619
Page 56 of 160
Author:  Sojourner [ Tue Apr 02, 2013 10:43 am ]
Post subject:  Re: Multi 10:4 Trader EA

With previous versions I tuned off the EA and used a closeall script to close all my positions and then turned the ea back on. I just did that with 2.0 and now I'm solidly crashing if I try to change TF to jog the EA to make a display.
=(

Nevermind.......It said the EA was corrupted and needed to be recompiled. I did and it works now. :shock:
Author:  fx800 [ Tue Apr 02, 2013 10:54 am ]
Post subject:  Re: Multi 10:4 Trader EA

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
Author:  fx800 [ Tue Apr 02, 2013 10:57 am ]
Post subject:  Re: Multi 10:4 Trader EA

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
Author:  fx800 [ Tue Apr 02, 2013 11:18 am ]
Post subject:  Re: Multi 10:4 Trader EA

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
It is really incredible, the Cowboy IBFX 10K demo just closed when 5% gain reached.

Well done, MrLong and many others who contributed to this ea.

Cheers,
peter
Author:  slipshod [ Tue Apr 02, 2013 11:25 am ]
Post subject:  Re: Multi 10:4 Trader EA

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
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.
Author:  patman [ Tue Apr 02, 2013 11:25 am ]
Post subject:  Re: Multi 10:4 Trader EA

Hi Mr Long,

Absolutely brilliant work. Thanks for sharing!

Here's my suggestion for fitting on the screen

make mainCellHeight an extern

Code: Select all

int   headCellHeight = 2,      // in lines
      footCellHeight = 2;
extern int    mainCellHeight = 35;
then at the start of init

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");

This way by adjusting the mainCellHeight everything will be visible
Alternatively you could set mainCellHeight = (number of pairs)

Pat
Author:  fx800 [ Tue Apr 02, 2013 11:32 am ]
Post subject:  Re: Multi 10:4 Trader EA

slipshod wrote:
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
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.
Hi Slipshod,

Many thanks.

I am using a 14.6 " laptop, hence cannot see the bottom of the screen where the delete/close buttons are. Never mind.

Cheers,
peter
Author:  slipshod [ Tue Apr 02, 2013 11:48 am ]
Post subject:  Re: Multi 10:4 Trader EA

Peter, no worries hopefully Andy has a chance to move the row up to the top (along with the buttons) for the next version. Nice going with your 5% target being hit - my Cowboy IBFX only went 2% before retracing and hitting the % trailer, and is again at another 2% profit now with 1.2% locked in & I've had it running since early Sydney session. Not complaining mind you, profit is profit!
Author:  patman [ Tue Apr 02, 2013 11:54 am ]
Post subject:  Re: Multi 10:4 Trader EA

Mr Long,

should showDisplay be used in refreshGrid?

Code: Select all

void refreshGrid()
{
   if (showDisplay)
   {
      if ( GridMethod < 1 )  // simplex
      {			
         UpdateGrid();
      }
      else
      {
         DisplayGrid();
      }
   }
}
Pat
Author:  MrLong [ Tue Apr 02, 2013 12:25 pm ]
Post subject:  Re: Multi 10:4 Trader EA

patman wrote:Mr Long,

should showDisplay be used in refreshGrid?

Code: Select all

void refreshGrid()
{
   if (showDisplay)
   {
      if ( GridMethod < 1 )  // simplex
      {			
         UpdateGrid();
      }
      else
      {
         DisplayGrid();
      }
   }
}
Pat
Hello

Yes, if we are not displaying then there is no point refreshing the grid.

Andy
All times are UTC Page 56 of 160