MultiBob, a multi symbol NB10.2(a) autotrader

Share your 10.x automated traders here.
Post Reply
User avatar
alex_forex
Trader
Posts: 438
Joined: Tue Nov 15, 2011 5:46 pm
Location: F R A N C E

Re: MultiBob, a multi symbol NB10.2(a) autotrader

Post by alex_forex »

Gsasha1969 wrote:I can not understand why? Pivots differ? criminal IBFXAustralia GMT 0
Please forgive me for my english
Every pair got a different DP value ... what is your question ?
spotdespot
Trader
Posts: 768
Joined: Sun Jan 22, 2012 11:38 pm

Re: MultiBob, a multi symbol NB10.2(a) autotrader

Post by spotdespot »

alex_forex wrote:
Gsasha1969 wrote:I can not understand why? Pivots differ? criminal IBFXAustralia GMT 0
Please forgive me for my english
Every pair got a different DP value ... what is your question ?
He's pointing out the disparity between the pivot drawn by the DWMPivot indi and the display for the EA for the 2 pairs.
spotdespot
Trader
Posts: 768
Joined: Sun Jan 22, 2012 11:38 pm

Re: MultiBob, a multi symbol NB10.2(a) autotrader

Post by spotdespot »

alex_forex wrote:Evening fellow NB traders :)

Anyone to explain me minD1TPTargetPips ? Not sure to understand this setting :geek:

Thanks ;)

Alex
I think it basically ensure that the TP target is for D1 trend trades is a minimum distance from current price otherwise it doesn't take the trade - basically ensuring a reasonable R:R I guess.

Cheers,
Dave.
User avatar
alex_forex
Trader
Posts: 438
Joined: Tue Nov 15, 2011 5:46 pm
Location: F R A N C E

Re: MultiBob, a multi symbol NB10.2(a) autotrader

Post by alex_forex »

spotdespot wrote:
alex_forex wrote:
Gsasha1969 wrote:I can not understand why? Pivots differ? criminal IBFXAustralia GMT 0
Please forgive me for my english
Every pair got a different DP value ... what is your question ?
He's pointing out the disparity between the pivot drawn by the DWMPivot indi and the display for the EA for the 2 pairs.
OK

The in-house calculation of the DP may be different from the indicator.
Have to compare the calculation method.

Cheers
Alex
User avatar
alex_forex
Trader
Posts: 438
Joined: Tue Nov 15, 2011 5:46 pm
Location: F R A N C E

Re: MultiBob, a multi symbol NB10.2(a) autotrader

Post by alex_forex »

spotdespot wrote:
alex_forex wrote:Evening fellow NB traders :)

Anyone to explain me minD1TPTargetPips ? Not sure to understand this setting :geek:

Thanks ;)

Alex
I think it basically ensure that the TP target is for D1 trend trades is a minimum distance from current price otherwise it doesn't take the trade - basically ensuring a reasonable R:R I guess.

Cheers,
Dave.
Thanks for your answer Spot ;)

Cheers
Alex
Gsasha1969
Posts: 5
Joined: Sat Sep 15, 2012 8:35 am
Location: Ukraine, UA, Dnepropetrovsk

Re: MultiBob, a multi symbol NB10.2(a) autotrader

Post by Gsasha1969 »

spotdespot wrote:
alex_forex wrote:
Gsasha1969 wrote:I can not understand why? Pivots differ? criminal IBFXAustralia GMT 0
Please forgive me for my english
Every pair got a different DP value ... what is your question ?
He's pointing out the disparity between the pivot drawn by the DWMPivot indi and the display for the EA for the 2 pairs.
OK

The in-house calculation of the DP may be different from the indicator.
Have to compare the calculation method.


Thank you!
means there is a difference from manual trading? :oops:
User avatar
gaheitman
Trader
Posts: 655
Joined: Tue Nov 15, 2011 10:55 pm
Location: Richmond, VA, US

Re: MultiBob, a multi symbol NB10.2(a) autotrader

Post by gaheitman »

Gsasha1969 wrote:

Thank you!
means there is a difference from manual trading? :oops:
The EA code does not handle the exclusion of Sunday candles correctly. In getPivots(), this line:

Code: Select all

   if ( tf == PERIOD_D1 && ( sundayCandlesDetected || saturdayCandlesDetected ) ) shift++;
should be changed to something like this line (checking to see if today is Monday)

Code: Select all

   if ( tf == PERIOD_D1 && TimeDayOfWeek( iTime( NULL, PERIOD_D1, shift ) ) == 1 && ( sundayCandlesDetected || saturdayCandlesDetected ) ) shift++;
Currently, it is always looking back an additional day if there are Sat/Sun candles, but it should only do it on Mondays.

After making the change, I get the same values from the EA and the indicator.

George
Gsasha1969
Posts: 5
Joined: Sat Sep 15, 2012 8:35 am
Location: Ukraine, UA, Dnepropetrovsk

Re: MultiBob, a multi symbol NB10.2(a) autotrader

Post by Gsasha1969 »

George!
Thank you so much!
made a change to the code and all was as it should be!!! :D
theforexedge
Trader
Posts: 220
Joined: Thu Apr 26, 2012 10:31 pm
Location: Torquay

Re: MultiBob, a multi symbol NB10.2(a) autotrader

Post by theforexedge »

10.2a Pivot Trade

Paul

I got a AUDJPY Pivot Shot trade this morning and the D1 Slope was flat (see attached).

The also happened with USDCAD...i'm using M15 as the Pivot Cross setting.

Jason
You do not have the required permissions to view the files attached to this post.
User avatar
Baluda
Trader
Posts: 330
Joined: Mon Feb 06, 2012 2:00 pm
Location: An insignificant village in the Netherlands

Re: MultiBob, a multi symbol NB10.2(a) autotrader

Post by Baluda »

theforexedge wrote:I got a AUDJPY Pivot Shot trade this morning and the D1 Slope was flat (see
Jason,

NB 10.2a trades aren't about slope. Please read up on 10.2a here.

Paul
Check the MQL4 Market for my best EA's and Indicators.
Post Reply

Return to “10.x EA forum”