You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
wow did you down load it and put it right on real money from the start?
Brave soul....
But thats the real way to test it. Make sure to use a s/lI use demo account test it..
But I want to run in the live account.
I use demo account test it.. But I want to run in the live account.
look back in the last few pages and use the one I posted labled jpy. It is the one I am using on real money with FXDD.
set GMT=3
no trade times 08,09,12,14
6 wins 2 losses in a week
So far so good!!!!!
Alrighty follks so far for the week (meaning last night ):
WINS: 2
LOSSES: 0
This is based on David's version of the EA...
Will post screen a screen shot at the end of the week, good luck to us all!
B
Alrighty follks so far for the week (meaning last night ):
WINS: 2
LOSSES: 0
This is based on David's version of the EA...
Will post screen a screen shot at the end of the week, good luck to us all!
Balways nice to start with wins. Then when a loss comes it don't feel bad. Is it real money?
I think max consecutive losses at any given time in a year was 5 or 6
always nice to start with wins. Then when a loss comes it don't feel bad. Is it real money? I think max consecutive losses at any given time in a year was 5 or 6
No, not yet... but with a couple weeks of testing... and if everything still looks good... then, i will start playing with big dogs ($500 mini) ! Thats what my wins right now are based on, is a mini $500 demo account.
Cheers,
B
down load FXDD demo and try it on there. Ibfx has a variable spread. This could make it different in the way it reads the ticks.
FXDD I have just done and get similar to my previous results.
test
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 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);
}don't you need to add
int Ask RSI () ?
and what about on the other side of the 0 line in RSI? -20 and -80?
look back in the last few pages and use the one I posted labled jpy. It is the one I am using on real money with FXDD.
set GMT=3
no trade times 08,09,12,14
6 wins 2 losses in a weekhi.xxDavidxSxx:
Thank for your instruction.
But I have a problem.
At cyberia.org.ru
http://cyberia.org.ru/node/17
Time control options for CyberiaTraderPro
Why all different everyday?
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..?