Multi 10:4 Trader EA

Post Reply
User avatar
KevinT
Trader
Posts: 113
Joined: Fri Jan 06, 2012 4:23 am

Re: Multi 10:4 Trader EA

Post by KevinT »

sponn wrote:BTW Does anybody tried to play with stoch or rsi and can tell which one is better ?
Hi Spoon RSI is better (+accurate) except if the market is ranging in a way it doesnt really flat the rsi2 OR gives few entries. STO5 nails it then IMHO. ;)

PS: According to Andrew, the way they're implemented on the EA, there is not much diff. :|
Last edited by KevinT on Wed Apr 17, 2013 11:09 am, edited 2 times in total.
mhensen
Posts: 3
Joined: Tue Apr 09, 2013 11:35 am

Re: Multi 10:4 Trader EA

Post by mhensen »

I have added some Alerts to zoom in to the Divide by 0 error..

The Divided by 0 error is coming from the statement

SLPts /= point; in function getLots..

the points value can become 0 (at least that is what I see) so the Stop loss points cannot be calculated..

Log:

12:41:57 Multi_10_4_EAv2.01a GBPUSD,H1: CADCHF.close[0]= iClose(CADCHF, tf,0) : 0.00000
12:41:58 Multi_10_4_EAv2.01a GBPUSD,H1: Alert: point GBPJPY: 0.00100000 SLPts:4.68100000
12:41:58 Multi_10_4_EAv2.01a GBPUSD,H1: Alert: point GBPJPYSLPts/=point:4681.00000000
12:41:58 Multi_10_4_EAv2.01a GBPUSD,H1: S1: GBPJPY, S2: CADCHF, tf: 1440, periods: 50
12:41:58 Multi_10_4_EAv2.01a GBPUSD,H1: (symbol2.close < EPSILON)...
12:41:58 Multi_10_4_EAv2.01a GBPUSD,H1: CADCHF.close[0]= iClose(CADCHF, tf,0) : 0.00000
12:41:58 Multi_10_4_EAv2.01a GBPUSD,H1: Alert: point GBPNZD: 0.00000000 SLPts:2.00070000
12:41:58 Multi_10_4_EAv2.01a GBPUSD,H1: zero divide
User avatar
KevinT
Trader
Posts: 113
Joined: Fri Jan 06, 2012 4:23 am

Re: Multi 10:4 Trader EA

Post by KevinT »

AGT wrote:Hi guys - so plz post here which brokers you do use ? To make it clear ....
Andy correct me b/c I'm wrong :lol:
Machine HP i5 Laptop 8mb
OS W7 64bit
Crim Alpari UK Demo & live
Broker Global Prime demo ASA new demo server is working fine and dandy :mrgreen:
User avatar
glabbeek
Trader
Posts: 104
Joined: Tue Aug 21, 2012 8:09 am
Location: In the middle of the Netherlands

Re: Multi 10:4 Trader EA

Post by glabbeek »

Here also very high cpu consumption. between 85 and 100 percent.

The exit options are perfect. I'll try to get some useful data.
You do not have the required permissions to view the files attached to this post.
Regards,
Willem-Bram
MrLong

Re: Multi 10:4 Trader EA

Post by MrLong »

mhensen wrote:I have added some Alerts to zoom in to the Divide by 0 error..

The Divided by 0 error is coming from the statement

SLPts /= point; in function getLots..

the points value can become 0 (at least that is what I see) so the Stop loss points cannot be calculated..

Log:

12:41:57 Multi_10_4_EAv2.01a GBPUSD,H1: CADCHF.close[0]= iClose(CADCHF, tf,0) : 0.00000
12:41:58 Multi_10_4_EAv2.01a GBPUSD,H1: Alert: point GBPJPY: 0.00100000 SLPts:4.68100000
12:41:58 Multi_10_4_EAv2.01a GBPUSD,H1: Alert: point GBPJPYSLPts/=point:4681.00000000
12:41:58 Multi_10_4_EAv2.01a GBPUSD,H1: S1: GBPJPY, S2: CADCHF, tf: 1440, periods: 50
12:41:58 Multi_10_4_EAv2.01a GBPUSD,H1: (symbol2.close < EPSILON)...
12:41:58 Multi_10_4_EAv2.01a GBPUSD,H1: CADCHF.close[0]= iClose(CADCHF, tf,0) : 0.00000
12:41:58 Multi_10_4_EAv2.01a GBPUSD,H1: Alert: point GBPNZD: 0.00000000 SLPts:2.00070000
12:41:58 Multi_10_4_EAv2.01a GBPUSD,H1: zero divide



Try turning this feature off: extern bool reduceLotsize =true; ,== make it false

Then see if the error is still there.
User avatar
simplex
Trader
Posts: 127
Joined: Thu Feb 07, 2013 5:21 pm
Location: An insignificant small town close to an insignificant former capital at the Rhine River.

Re: Multi 10:4 Trader EA

Post by simplex »

glabbeek wrote:Here also very high cpu consumption. between 85 and 100 percent.
Same on my test machine - even after slipshod's modifications. Mostly 100% single core consumption. Empty4 keeps crashing every 5 to 10 minutes. Haven't analyzed possible reasons yet.

Jürgen
If you can't explain it simply, you don't understand it well enough. (Albert Einstein)
It appears that the Weighted Moving Average was invented by a trader who did not have a firm grasp of filter theory in hopes of reducing lag. (John F. Ehlers)
mhensen
Posts: 3
Joined: Tue Apr 09, 2013 11:35 am

Re: Multi 10:4 Trader EA

Post by mhensen »

Try turning this feature off: extern bool reduceLotsize =true; ,== make it false

Then see if the error is still there.

I think I have found the problem..
The GBPNZD doesn't exist on my broker side!!! (hotForex)

So I need either to set the pairs in the properties or use autoSymbols..I did a testrun with autoSymbols=true and then the error doesn't occur!!
MrLong

Re: Multi 10:4 Trader EA

Post by MrLong »

mhensen wrote:
Try turning this feature off: extern bool reduceLotsize =true; ,== make it false

Then see if the error is still there.

I think I have found the problem..
The GBPNZD doesn't exist on my broker side!!! (hotForex)

So I need either to set the pairs in the properties or use autoSymbols..I did a testrun with autoSymbols=true and then the error doesn't occur!!

Excellent, that,s why some crims work and some not!!
User avatar
forextra
Trader
Posts: 42
Joined: Tue Mar 12, 2013 12:34 pm
Location: Perth, Australia

Re: Multi 10:4 Trader EA

Post by forextra »

Ok- just uploaded 2.01 and seems to be working fine but have noticed all but 1 of pending trades are Buys. (EURCHF a Sell). However, noticed that most of the buys have the RSI topped out at 100. Just using OOTB so haven't tinkered as yet. Has anyone else noticed this anomaly or can point out where I have gone wrong.
User avatar
forextra
Trader
Posts: 42
Joined: Tue Mar 12, 2013 12:34 pm
Location: Perth, Australia

Re: Multi 10:4 Trader EA

Post by forextra »

Empty4 Exp.jpg
just noticed these messages in Empty4 Experts
You do not have the required permissions to view the files attached to this post.
Post Reply

Return to “Nanningbob 10.x”