Great EA in backtest! - page 87

 
ajcrshr:
Dave

the int AskCCI (), as far as i know, just checks the indicators in the code below it.. if it is set to true... could put in a seperate RSI filter but i was just testing different settings

i've never seen a negative rsi value..?

lol been long time since I looked at an rsi. I'll give these a try

-------------------------------------------------------------------

As far as some one not getting the same results on FXDD I dunno what to say to that. Just to make sure your using exactly the same thing as me. Did you download new alpari data? Or just run the ea as soon as you DLed fxdd platfom.

I think argorn said he's with ibfx too try using his settings with ibfx

Crazyness I tell ya

 
ajcrshr:
i used daves settings(1.85), but i added the

following filters in with the other cci filter in the code...

backtests say 80% plus profit trades for eur/usd about 75% usd/jpy

try it out and tell me what you think...

int AskCCI ()

{

if (iCCI( NULL, 0, 10, PRICE_TYPICAL, 0) > 50)

DisableSell = true;

if (iCCI( NULL, 0, 10, PRICE_TYPICAL, 0) < -50)

DisableBuy = true;

if (iCCI( NULL, 0, 100, PRICE_TYPICAL, 0) > -100)

DisableSell = true;

if (iCCI( NULL, 0, 100, PRICE_TYPICAL, 0) < 100)

DisableBuy = true;

if (iRSI( NULL, 0, 2, PRICE_TYPICAL, 0) < 20)

DisableSell = true;

if (iRSI( NULL, 0, 2, PRICE_TYPICAL, 0) > 80)

DisableBuy = true;

return (0);

}

I tested with your filters and with the old filters...both tests were identical.? Remember this EA 'asks' the cci and other indicators it does not actual use them.

 

i added the rsi and another cci filter

you'll have to test out different settings on them in the code..

right now the second cci has a period of 100

(iCCI( NULL, 0, 100, PRICE_TYPICAL, 0) > -100)

and the rsi has a period of 2

(iRSI( NULL, 0, 2, PRICE_TYPICAL, 0) < 20)

i hope that the profit percentage can increase with more filters(less trades)

 

aragorn thanks for trying those filters

heres what i got

i was trying to increase the Profit trades (% of total)

it went from 78%-84%, but i dont know if its worth it..alot less trades

maybe someone can find a good setting or any use for the filters

 
ajcrshr:
aragorn thanks for trying those filters

heres what i got

i was trying to increase the Profit trades (% of total)

it went from 78%-84%, but i dont know if its worth it..alot less trades

maybe someone can find a good setting or any use for the filters

rember I took cci and pivot out. fOR $JPY and got much better results...but euro$ needs the filters

real mony update...77% wins...another just closed for profit

edit you got better acuracy but half the profits... I want more money myself

Now try raising the reverse index to get more trades. And lower values peroid count

 

I had nothing but bad results with the settings on both euro$ and $ jpy.

Man thats messed up.

Mabe we need to ask the makers of meta trader what is going on here. The ea is the same....the data is the same...only differance is PC and brokers. And even with the same broker tests are different.

I dunno

 

.......

Its because we're demo... they don't care about us

hahahaha... but its probably true!

B

 
xxDavidxSxx:
lol been long time since I looked at an rsi. I'll give these a try

-------------------------------------------------------------------

As far as some one not getting the same results on FXDD I dunno what to say to that. Just to make sure your using exactly the same thing as me. Did you download new alpari data? Or just run the ea as soon as you DLed fxdd platfom.

I think argorn said he's with ibfx too try using his settings with ibfx

Crazyness I tell ya

This is crazy and it would be nice to solve it. Here is what I did. I had an already existing FXDD MT4 demo. I deleted all USDJPYx.hst files from the history folder. I downloaded alpari 1M data and imported the data into history centre. I then ran the period converter to create 5 min, 15 min, 30 min, 60 min data. I then ran the test. I didn't delete my account, maybe I should have.

 
xxDavidxSxx:
rember I took cci and pivot out. fOR $JPY and got much better results...but euro$ needs the filters

real mony update...77% wins...another just closed for profit

edit you got better acuracy but half the profits... I want more money myself

Now try raising the reverse index to get more trades. And lower values peroid count

two tests....

one with reverse index = 3.82

net profit = $3151.88

total trades 816

one with reverse index = 7

net profit = $5018.09

total trades = 1423

 
tururo:
This is crazy and it would be nice to solve it. Here is what I did. I had an already existing FXDD MT4 demo. I deleted all USDJPYx.hst files from the history folder. I downloaded alpari 1M data and imported the data into history centre. I then ran the period converter to create 5 min, 15 min, 30 min, 60 min data. I then ran the test. I didn't delete my account, maybe I should have.

you have to convert data all the way to D1. Don't ask why. It just matters. Its been tested.

Reason: