We are our own best indicator.
- #1,379
- Oct 14, 2010 10:34am Oct 14, 2010 10:34am
- | Joined Nov 2006 | Status: Trader | 1,143 Posts
24 hours in a day – 24 bottles of beer in a case – Coincidence? I think not
Nanningbob 4h trading system ver. 5.0 4,432 replies
Nanningbob 60x90 EA 3,920 replies
Help regarding NanningBob EA 27 replies
Nanningbob 4H trading system 2,017 replies
Help to improve profitable EA - 1H NanningBob 40MA 200 BB 10 replies
extern string grk="---- Max Lot by currency ---"; extern double MaxLot_JPY = 0.5; extern double MaxLot_USD = 5; extern double MaxLot_GBP = 0.75; extern double MaxLot_EUR = 0.6; extern double MaxLot_CHF = 0.4; extern double MaxLot_AUD = 0.4; extern double MaxLot_NZD = 0.35; extern double MaxLot_CAD = 0.35;
DislikedMax,
I traded my EA (which was just NB system) that I built that is similar to the 'beast'. However, it still had HUGE challenges during big big big runs.
One of the things that helped me out big time was that I never traded more than X pairs of the same currency. So, I think to warn others to use the Master EA for such would be a wise improvement to the risk trading.
These are my settings as my starting lot size is 0.05 and if anyone can tell me what they think:
[code]extern string grk="---- Max Lot by currency ---";
extern double...Ignored
DislikedNo it's rather complex and not configurable. For moment I writed this code for myself and i feel confortable with it. Look at the code in order to understant it.Ignored
DislikedArbinka:
So you don't see any of these types of issues with your 71c?
Well past the recovery line, yet no recovery trade taken? Or (most likely) am I missing the logic of recovery?Ignored
DislikedMeans 100 trades for USD !!!
personnaly I will choose :
extern string grk="---- Max Lot by currency ---";
extern double MaxLot_JPY = 0.6;
extern double MaxLot_USD = 1;
extern double MaxLot_GBP = 0.6;
extern double MaxLot_EUR = 0.8;
extern double MaxLot_CHF = 0.5;
extern double MaxLot_AUD = 0.3;
extern double MaxLot_NZD = 0.3;
extern double MaxLot_CAD = 0.4;Ignored
DislikedMax
I had two close outs today. The first there was this message:
CLAf-DD_Pct @ 15h3(20) EquityInPct=1.47 DD_Pct=-0.63
The second time just a few minutes ago there were two messages:
CloseALL (12) @ 23h45 Net=1.96 Lowest=-1.46
CLEv-Net>1 @ 23h45(12) Net=1.96 Lowest=-1.46
What do these mean?
Also can the various messages be written to the Journal please? They will be very useful for analysis later.
ThanksIgnored
DislikedI think it has to do with the fact I am running it at .05 lots on 5k.
1.5x .05 lots is .075 lots, which cant be opened. The latest max bot gave me the error invalid trade volume, so at least I knew what was going on, the 71c just doesnt do anything at all.
Some code should be added to round lotsizes to acceptable to broker values. But for now I guess I'll just change the lot multiplier on recovery trades so they can be taken.Ignored
DislikedDon't think its a bug, its two different trade setups, just happen to be in diff directions. I have had a couple like thatIgnored
DislikedMax
Noticed these two opposing trades on USDCAD taken this morning with V103.
A Buy using at 04:00 with #3
A Sell using TX4 at 08:42
Perhaps a bug?
ZIgnored
DislikedI think this is a bug. NB trades and TX4 trades are using the same magic magicCounterTrend in this case they shouldn't be in different directions otherwise recovery goes wrong and you get invalid stop errors .
Look at your journal to see if you have invalid stop on one of them.Ignored
DislikedI think this is a bug. NB trades and TX4 trades are using the same magic magicCounterTrend in this case they shouldn't be in different directions otherwise recovery goes wrong and you get invalid stop errors .
Look at your journal to see if you have invalid stop on one of them.Ignored
void Mode3Sell()
{
double Var1, Var2;
Var1 = iMA(NULL, 0, 1, 0, MODE_LWMA, PRICE_MEDIAN, 0);
Var2 = iMA(NULL, 0, 4, 0, MODE_LWMA, PRICE_LOW, 0);//mod
BbUpper = iBands(NULL, 0, 25, 2, 0, PRICE_CLOSE, MODE_UPPER, 0);
RefreshRates();
if([b][color=Red]Bid[/color][/b] > Var2 && Var1 < BbUpper) { Sell(Level+"#3 SELL"+version); }
}