Multi 10:4 Trader EA

Post Reply
User avatar
slipshod
Trader
Posts: 404
Joined: Tue Dec 27, 2011 9:14 am
Location: Australia

Re: Multi 10:4 Trader EA

Post by slipshod »

Ok, deletePending is false, Alpari installed.

v1.06 creates 3 pending longs on AUDJPY, GBPJPY and USDJPY
v1.07 has 2 empty columns for TYPE & TREND, and no trades
v1.08 shows Long/UT for AUDJPY, GBPJPY, USDCAD, USDJPY, but no trades
MrLong

Re: Multi 10:4 Trader EA

Post by MrLong »

slipshod wrote:Ok, deletePending is false, Alpari installed.

v1.06 creates 3 pending longs on AUDJPY, GBPJPY and USDJPY
v1.07 has 2 empty columns for TYPE & TREND, and no trades
v1.08 shows Long/UT for AUDJPY, GBPJPY, USDCAD, USDJPY, but no trades
v1.08 OOTB ?

extern bool UseRSIInsteadOfStoch = true;// Use Stoch or RSI
extern bool useBoundryFilter =false;
extern bool UseSR2 = true; //R2/S2 <== change mine to this
extern bool deletePending = false;

With those settings above I get:
LONG TRADES, AUDJPY, AUDNZD, GBPJPY, USDCAD, USDJPY.

SHORT TRADES XAGUSD

Andy
nubika
Trader
Posts: 80
Joined: Tue Dec 06, 2011 9:52 pm
Location: Sydney, Hills District

Re: Multi 10:4 Trader EA

Post by nubika »

MrLong wrote:
slipshod wrote:
TraderDesk wrote:
nubika wrote:Guys,

I loaded 1.08 version on 2 broker platforms, but so far did not even place pending orders. Running all day now. The other one on FXCM does not even work properly the "correlated pairs " section is just blank. Nothing comes up.
Global Prime looks OK with the setup, but no pending orders all day. 1.07 still works well and running smoothly.

If any of you have a working and successful set file on 1.08, please post it here or list your settings.

Thanks
Frank
I have 1.08 running with OOB settings for the last 12 hours and it has 4 pending at the moment...
I've had it running on two fresh Empty4 installs for the last 12 hours, one using RSI (OOB) and the other Stoch. Neither have placed any pending trades, and the Type & Trend columns are empty except for on AUDJPY where it says Long and UT. Not sure what the problem is :\

Edit: Just loaded 1.07 on one of the blank installs - again no trades. Loaded 1.06 and it places a long on AUDJPY but that's all. Perhaps its just how the market was today & its working as it should?

Hi slipshod,

Have you tried it with this setting set to false?
extern bool useBoundryFilter =true;

Andy
Andy,

Tried your suggestion. Made no difference on the account which does not show anything from the Pro: column to B-even column. The rest is showing and looks like it is working but as I said no pending trades all day. This is on the FXCM account.

The Global Prime account is OK with the identical settings. All columns are displaying what it has to show. But like the other broker, this also did not place any pending orders all day. Started at the same time.

If I switch off the RSI option, then I will revert back to the same as version 1.07 and that is not the purpose of this test.
Wanted to see how the RSI setting will make any difference.

Frank
MrLong

Re: Multi 10:4 Trader EA

Post by MrLong »

nubika wrote:
MrLong wrote:
slipshod wrote:
TraderDesk wrote:
nubika wrote:Guys,

I loaded 1.08 version on 2 broker platforms, but so far did not even place pending orders. Running all day now. The other one on FXCM does not even work properly the "correlated pairs " section is just blank. Nothing comes up.
Global Prime looks OK with the setup, but no pending orders all day. 1.07 still works well and running smoothly.

If any of you have a working and successful set file on 1.08, please post it here or list your settings.

Thanks
Frank
I have 1.08 running with OOB settings for the last 12 hours and it has 4 pending at the moment...
I've had it running on two fresh Empty4 installs for the last 12 hours, one using RSI (OOB) and the other Stoch. Neither have placed any pending trades, and the Type & Trend columns are empty except for on AUDJPY where it says Long and UT. Not sure what the problem is :\

Edit: Just loaded 1.07 on one of the blank installs - again no trades. Loaded 1.06 and it places a long on AUDJPY but that's all. Perhaps its just how the market was today & its working as it should?

Hi slipshod,

Have you tried it with this setting set to false?
extern bool useBoundryFilter =true;

Andy
Andy,

Tried your suggestion. Made no difference on the account which does not show anything from the Pro: column to B-even column. The rest is showing and looks like it is working but as I said no pending trades all day. This is on the FXCM account.

The Global Prime account is OK with the identical settings. All columns are displaying what it has to show. But like the other broker, this also did not place any pending orders all day. Started at the same time.

If I switch off the RSI option, then I will revert back to the same as version 1.07 and that is not the purpose of this test.
Wanted to see how the RSI setting will make any difference.

Frank
Hi Frank,

1.08 is a lot different from 1.07, not just RSI, does it work ok with STOCH?

Andy
TraderDesk
Trader
Posts: 479
Joined: Wed Nov 16, 2011 2:12 pm
Location: Estonia

Re: Multi 10:4 Trader EA

Post by TraderDesk »

Andy, what exactly does the variable "useBoundryFilter" do?

Thanks...
TraderDesk
User avatar
slipshod
Trader
Posts: 404
Joined: Tue Dec 27, 2011 9:14 am
Location: Australia

Re: Multi 10:4 Trader EA

Post by slipshod »

Andy, tried your settings - sorry, still no trades. Switching between RSI & Stoch makes no difference either.
MrLong

Re: Multi 10:4 Trader EA

Post by MrLong »

TraderDesk wrote:Andy, what exactly does the variable "useBoundryFilter" do?

Thanks...
IIt works out the boundaries based on the Average Daily Range for the ma 240, if price is outside adr x 2 then the EA won't take a trade, you can vary the setting, X 2.00 looked ok to me, and also works out the inner boundary, don't take a trade if the price of the pending order is closer than Adr X 0.25, also buffer pips Adr X 0.05, this is what is added to the pending price.

Better than just having a fixed number, because all pairs have different ranges,

You can view the settings for each pair by turning on: extern bool alertPipBoundrySettings =false;, to true, then recompile, you should, notice I say should, because nothing surprises me with MT anymore, get the alert box appear, with all the settings, then just turn off the switch and recompile.

If you don't like the settings, either change them or switch it off.

Andy
MrLong

Re: Multi 10:4 Trader EA

Post by MrLong »

slipshod wrote:Andy, tried your settings - sorry, still no trades. Switching between RSI & Stoch makes no difference either.
Hi slipshod,

I'm going to have to have a think about it, mine works perfect, attached are trades running from when I setup the EA, last night GMT.

Compiled code will be the same, so I cannot understand what's happening.

Andy
You do not have the required permissions to view the files attached to this post.
User avatar
Sojourner
Trader
Posts: 105
Joined: Fri Apr 27, 2012 7:36 pm

Re: Multi 10:4 Trader EA

Post by Sojourner »

McNish wrote:
Sojourner wrote:Had to. You can't get the Expert in the navigator unless you restart. ;-)
I'm so glad when ever I get a chance to give tips to F.T's. But here at SHF, in the midst of Brains Trust, :D

Go to the relevant Empty4, F4, compile, terminal. Check navigator ! :o

Waiting for the next version of optimized code already. :lol:

;)

Ya got me there! Nice to know! Thanks!
User avatar
rosst
Trader
Posts: 280
Joined: Wed Feb 27, 2013 1:11 pm
Location: Austin, Texas

Re: Multi 10:4 Trader EA

Post by rosst »

I have these pendings on FXDD - but the comment section seems to not be working on this new version - it worked fine on the previous version (so I can easily tell which version the trades were taken with) I also put gold, silver, oil and a few others in the ignore list...

On Cowboy IBFX there is only a cadjpy pending...
You do not have the required permissions to view the files attached to this post.
Post Reply

Return to “Nanningbob 10.x”