Bob and Jem and Shelley's Pivot Basket auto-trader

Share your 10.x automated traders here.
Post Reply
User avatar
Mike
Trader
Posts: 272
Joined: Sun Dec 11, 2011 12:30 pm
Location: Italy

Re: Bob and Jem and Shelley's Pivot Basket auto-trader

Post by Mike »

The_Snowman wrote:this is driving me crazy ... off it goes again, can't seem to stop it now, even restart and use original settings doesn't help - would another EA cause this type of conflict perhaps?

:?
This s the problem I ran into with ShelleyJem without using any other ea and everybody indicated the need to refresh historical data, which in my case did not work. I sure did not expect this error to show up again with this bot. So I am just waiting till things clear up;-)
Image
Image
Armen

Re: Bob and Jem and Shelley's Pivot Basket auto-trader

Post by Armen »

Hi all,

I setup BJeS with 1st group settings and let it go and gone out myself. Just came back and discovered that nothing happened. There was 7 pairs market as candidate for trigger but none of them traded. On my other account I put 5.1 EA onto NZDJPY and AUDJPY to buy them upon cross. Went up about 40 pips in just matter of half an hour. MPTM was doing the job automatically calculating profit target as a percent of balance. Not bad.
You do not have the required permissions to view the files attached to this post.
User avatar
Jemook
Trader
Posts: 1085
Joined: Thu May 10, 2012 10:19 am
Location: Bondi, Sydney, Australia

Re: Bob and Jem and Shelley's Pivot Basket auto-trader

Post by Jemook »

Armen - none of those pairs should have traded yet.

For a buy we need a close BELOW the d.pivot and then close ABOVE the d.pivot.
For a sell we need a close ABOVE the d.pivot and then a close BELOW the d.pivot.

This hasn't happened yet on any of the pairs your EA is watching.
Please note I am no longer affiliated with Global Prime. I've moved on to my next adventure with Afterprime.

Catch me here: https://www.afterprime.com
User avatar
monkeh
Trader
Posts: 72
Joined: Fri May 04, 2012 2:40 pm

Re: Bob and Jem and Shelley's Pivot Basket auto-trader

Post by monkeh »

The_Snowman wrote:Re last post, you will see this number change as per picture

:)
ahh
thanking you sir
+1
POH
Trader
Posts: 75
Joined: Thu Jun 28, 2012 6:04 am

Re: Bob and Jem and Shelley's Pivot Basket auto-trader

Post by POH »

Mine has taken one trade so far. NZDJPY buy and from what I understand it should take the second trade AUDCAD, but it hasn't.
You do not have the required permissions to view the files attached to this post.
quanttraderjoe
Trader
Posts: 65
Joined: Sat Feb 04, 2012 3:28 pm

Re: Bob and Jem and Shelley's Pivot Basket auto-trader

Post by quanttraderjoe »

hello Guys,

great ea here as usual!

i have set it up on demo and to see if it works as intended, i changed the pivot cross input to the m30 time frame instead of the h4. what happened was the ea kept opening and closing trades...like every second or so it would open 3 trades that met the criteria but then close it immediately. the cycle would repeat until i switched the experts tab off.

anyone experienced this? or is it because we cannot use m30 for the pivot cross option? thanks!
joe
fxarun
Trader
Posts: 41
Joined: Tue Feb 07, 2012 10:21 am
Location: Chennai India

Re: Bob and Jem and Shelley's Pivot Basket auto-trader

Post by fxarun »

quanttraderjoe wrote:hello Guys,

great ea here as usual!

i have set it up on demo and to see if it works as intended, i changed the pivot cross input to the m30 time frame instead of the h4. what happened was the ea kept opening and closing trades...like every second or so it would open 3 trades that met the criteria but then close it immediately. the cycle would repeat until i switched the experts tab off.

anyone experienced this? or is it because we cannot use m30 for the pivot cross option? thanks!
joe
Steve ,

The code here uses a default 4 hr pivot cross timeframe which causes this problem i think.

Code: Select all

 //Check for a close on the wrong side of the daily pivot
	  CalculatePivots(OrderSymbol() );
	  if (OrderType() == OP_BUY && iClose(OrderSymbol(), PERIOD_H4, 1) < DailyPivot)
	  {
			result = CloseTrade(OrderTicket() );
			if (result) cc++;
	  }//if (OrderType() == OP_BUY && iClose(OrderSymbol(), Period_H4, 1) < DailyPivot)
	  
	  if (OrderType() == OP_SELL && iClose(OrderSymbol(), PERIOD_H4, 1) > DailyPivot)
	  {
			result = CloseTrade(OrderTicket() );
			if (result) cc++;
	  }//if (OrderType() == OP_BUY && iClose(OrderSymbol(), Period_H4, 1) < DailyPivot)
Which it could be like

Code: Select all

 //Check for a close on the wrong side of the daily pivot
	  CalculatePivots(OrderSymbol() );
	  if (OrderType() == OP_BUY && iClose(OrderSymbol(), PivotCrossTimeFrame, 1) < DailyPivot)
	  {
			result = CloseTrade(OrderTicket() );
			if (result) cc++;
	  }//if (OrderType() == OP_BUY && iClose(OrderSymbol(), PivotCrossTimeFrame, 1) < DailyPivot)
	  
	  if (OrderType() == OP_SELL && iClose(OrderSymbol(), PivotCrossTimeFrame, 1) > DailyPivot)
	  {
			result = CloseTrade(OrderTicket() );
			if (result) cc++;
	  }//if (OrderType() == OP_BUY && iClose(OrderSymbol(), PivotCrossTimeFrame, 1) < DailyPivot)
Thanks

Arun
"It's not the strongest species that survive, nor the most intelligent, but the one most responsive to change"
-- Darwin.
The_Snowman
Trader
Posts: 395
Joined: Sun Nov 27, 2011 8:24 am
Location: Australia

Re: Bob and Jem and Shelley's Pivot Basket auto-trader

Post by The_Snowman »

Mike wrote:
The_Snowman wrote:this is driving me crazy ... off it goes again, can't seem to stop it now, even restart and use original settings doesn't help - would another EA cause this type of conflict perhaps?

:?
This s the problem I ran into with ShelleyJem without using any other ea and everybody indicated the need to refresh historical data, which in my case did not work. I sure did not expect this error to show up again with this bot. So I am just waiting till things clear up;-)
Thanks for the info, strangely, seems to be behaving today & it never gave any problems on the VPS with same settings & broker too.

And as another poster noted, seems to me that it needs to be refreshed every so often?
The_Snowman
Trader
Posts: 395
Joined: Sun Nov 27, 2011 8:24 am
Location: Australia

Re: Bob and Jem and Shelley's Pivot Basket auto-trader

Post by The_Snowman »

instantpips wrote:I cannot get this ea to 'refresh' automatically, I have to switch timeframes regularly to force it to re-read all the pairs.
Is there a setting one can change that will force it to re-read automatically?
I've noticed this also, today the GBPAUD was going between 0.59 and 0.61, so it would qualify to my setting of 0.60 but not appear in the EA list unless I changed time frame, then when it dropped back and should be off the the list, I had to do it again.

I am using the new Slope Value Indicator so it is easy to see which pairs will be on the trading list. Hope this can be sorted out; not good for running on a VPS if it half sleeping or whatever the proper term is.
quanttraderjoe
Trader
Posts: 65
Joined: Sat Feb 04, 2012 3:28 pm

Re: Bob and Jem and Shelley's Pivot Basket auto-trader

Post by quanttraderjoe »

yeah guys,

i noticed the ea doesn't do perpetual reading of the trading conditions so we have to refresh the ea for it to track the conditions n trigger the trades. i believe Steve will resolve this as soon as he is aware of the issues.
Post Reply

Return to “10.x EA forum”