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
Following are valid file extensions: bmp doc ex4 gif htm html jpe jpeg jpg mq4 mql pdf png psd rar txt zip
Thus, you will have to zip up your .mqh files and then upload. Better still, zip all the required files, the EA, the required indicator files, header files etc and then upload the zip file. That way, everything one needs to run the EA is in one place.
Again, good job and thanks for sharing.I'm not that advanced yet....right now i'm feeling quite unmotivated and lazy so for what it's worth here's the .mqh file code...just copy and paste into an "include" file....volia
this together with the rewrite .mq4 should work fine....welll....if you can get the strategy tester to make up it's friggin' mind how it wants to execute it.
interesting that the site that hosts this platform doesn't allow uploads for file types used in the platform???
oh well....par for the course I guess
//| GGLrewrite.mqh |
//| In no event will author be liable for any damages whatsoever. |
//| Use at your own risk. |
//| |
//| Please do not remove this header. |
//+------------------------------------------------------------------+
#property copyright "Aaragorn and Eaglehawk & Maji & Robert C."
#property link "http://sufx.core.t3-ism.net/ExpertAdvisorBuilder/"
#property link "http://forex.factoid.ca/forums/showthread.php?t=104"
#property link "https://www.forex-tsd.com/expert-advisors-metatrader-4/2840-gogetter-ea.html"
// many thanks goes to all those on the tsdforex forum and factoid forum who have encouraged us this far
//+------------------------------------------------------------------+
//| defines |
//+------------------------------------------------------------------+
//+-----------Store HIGH, LOW matching data------+
#define SLSIZE 15
static int SLIndex = 0;
static double sLocatorLows[ SLSIZE ] = { 0 };
static double sLocatorHighs[ SLSIZE ] = { 0 };
//+-----------Stored equity data-----------------+
#define StoredEquitySIZE 5
static int EquityIndex = 0;
static double EQUITY[ StoredEquitySIZE ] = { 0 };
static int EquityValuesStored = 0;
//+-----------close based on time----------------+
extern string Time_Settings="Time In Trade Settings";
extern int MonitorInMinutes = 60; // minutes after open to check state of trade
extern int ThresholdMove = 1; // if after that time we don't have +'x' pips we will exit
extern int MinsMultiplier = 75; // multiplies the MonitorInMinutes to make minutes (if 'x'=60) into hours
//+------------------------------------------------------------------+
//| Commonly used GoGetter Functions | |
//+------------------------------------------------------------------+
//+-------------StoreHighsAndLows Function----support and resistance arrays------thanks to Robert C for assistance on this-------+
//+-------creates array of each trade series support and resistance for signal profile matching-------------------+
void StoreHighsAndLows(double HIGH, double LOW)
{
if ( SLIndex >= SLSIZE )
{
SLIndex = 0;
}
sLocatorLows[ SLIndex ] = LOW;
sLocatorHighs[ SLIndex ] = HIGH;
SLIndex++;
}
//+-----------------------end of StoreHighsAndLows------------------------------------+
//+--------------- Get past equity function---------thanks Robert C.-----------+
// This returns past equity from the global equity array. The howFarBack parameter is a positive integer that indicates how far back into the array to go
// 1 would be the previous equity, 2 would be the equity before that, etc.
// the HowFarBack should not be greater than the arraysize
double GetPastEquity(int HowFarBack)
{
if ( HowFarBack > EquityValuesStored )
{
Print("Error getting past equity, Looking back farther than what we have stored");
return (-1);
}
else
{
int PastIndex = EquityIndex - HowFarBack;
if ( PastIndex < 0 )
{
PastIndex += StoredEquitySIZE;
}
return (EQUITY[PastIndex]);
}
}
//+--end of get past equity function-----------+
//+---Stores account Equity value in an array for future comparisions up to as many previous trades as the declared size of the array----thanks Robert C.-----+
void StoreAccountEquity(double equity)
{
if ( EquityIndex >= StoredEquitySIZE )
{
EquityIndex = 0;
}
EQUITY[EquityIndex] = equity;
EquityIndex++;
if ( EquityValuesStored < StoredEquitySIZE )
{
EquityValuesStored++;
}
}
//+-------end of Store Equity function-------------------+
//+---------count open trades function-------ty Maji--------------------------+
int CountTrades()
{
int count=0;
int trade;
for(trade=OrdersTotal()-1;trade>=0;trade--)
{
OrderSelect(trade,SELECT_BY_POS,MODE_TRADES);
if(OrderSymbol()!=Symbol()&&OrderMagicNumber()!=MagicNumber)
continue;
if(OrderSymbol()==Symbol()&&OrderMagicNumber()==MagicNumber)
if((OrderType()==OP_SELL) || (OrderType()==OP_BUY))
count++;
}//for
return(count);
}
//+-----------end of count trades-------------------------------------+
//+---------------------Close Based on Time function------------Thanks to 'Maji' for this-------------------+
void CloseOrder()
{
double Profit=ThresholdMove*Point;
int total = CountTrades();
for (int cnt = 0 ; cnt < total ; cnt++)
{
OrderSelect(cnt,SELECT_BY_POS,MODE_TRADES);
if ((CurTime()-OrderOpenTime())>MonitorInMinutes*60*MinsMultiplier)
{
if(OrderSymbol()==Symbol() && OrderType()==OP_BUY && Bid-Profit<OrderOpenPrice() )
{
OrderClose(OrderTicket(),OrderLots(),Bid,3,Violet);
}
if(OrderSymbol()==Symbol() && OrderType()==OP_SELL && Bid+Profit>OrderOpenPrice())
{
OrderClose(OrderTicket(),OrderLots(),Ask,3,Violet);
}
}
}
}
//+---------------------------end of close on time code---------------+
//+------------------------increase lots function-------------------------+
//+----------------increases lots based on account equity-----------------+
//double IncreaseLots()
//{
// Lots = NormalizeDouble(AccountFreeMargin()/(LotIncreaseFactor*1000/0.1),2);
// if(Lots > 99) Lots = 99;
// Print("account free margin = ",AccountFreeMargin()," Lots = ",Lots);
// return(Lots)
//}this reminds me not to be hung up on outcomes.....
just keep working toward improvement...progress not perfection....
if I hadn't seen it go to over a million i'd be happy with it going to over 20,000.
but having seen it go to over a million and now I can't get it to do it again....
makes me wonder where to look for answers to why it did it when it did and why it won't do it now?
for all I know tomorrow morning just because it's a different day it will do it again.....
I don't even know where to start looking for clues to this mystery
will somebody tell me where to begin this time?
It seems that what is different in the various tests is the performance of the trailing stop.
I guess that's where to start.
I wish there was a better platform. I'm getting tired of this... today the strategy tester refuses to even launch..it opens one position closes it and that's it, regardless of what I set as an initial deposit it won't do more than one trade....that's not very helpful....everything is set the same as last night.
error code says error 131 Invalid Trade volume....
is that the lots? it's entering lots = 0.01 what's invalid about that? it has accepted that lot size for a long time why should it suddenly reject it now?
is trade volume something else?
well for odd reason interbank stopped accepting lot sizes of 0.01 in the strategy tester...as soon as I changed it to 0.1 I stopped getting the invalid volume error....
I wonder if they will accept them when the market is open again or not on the weekend or what the deal is? They used to accept it???
anyway that is just another detour...I get to figure out what is making the trailing stop vary.
this is how the trailing stop moved in the series that went to over a million from $500 initially...
1 2005.09.09 06:00 buy 1 0.25 1.8392 1.8376 1.8482
2 2005.09.09 06:00 modify 1 0.25 1.8392 1.8379 1.8482
3 2005.09.09 06:07 modify 1 0.25 1.8392 1.8380 1.8482
4 2005.09.09 07:00 s/l 1 0.25 1.8380 1.8380 1.8482 -30.00 470.00
5 2005.09.09 07:00 buy 2 0.24 1.8379 1.8367 1.8434
6 2005.09.09 07:30 s/l 2 0.24 1.8367 1.8367 1.8434 -28.80 441.20
7 2005.09.09 07:30 buy 3 0.22 1.8372 1.8365 1.8425
8 2005.09.09 07:30 s/l 3 0.22 1.8365 1.8365 1.8425 -15.40 425.80
9 2005.09.09 07:35 buy 4 0.21 1.8367 1.8351 1.8457
10 2005.09.09 07:35 modify 4 0.21 1.8367 1.8355 1.8457
11 2005.09.09 07:35 modify 4 0.21 1.8367 1.8368 1.8457
12 2005.09.09 07:36 s/l 4 0.21 1.8368 1.8368 1.8457 2.10 427.90
13 2005.09.09 07:36 buy 5 0.21 1.8368 1.8352 1.8458
14 2005.09.09 07:36 modify 5 0.21 1.8368 1.8375 1.8458
15 2005.09.09 07:37 s/l 5 0.21 1.8375 1.8375 1.8458 14.70 442.60
16 2005.09.09 07:37 buy 6 0.22 1.8377 1.8361 1.8467
17 2005.09.09 07:37 modify 6 0.22 1.8377 1.8364 1.8467
18 2005.09.09 07:38 modify 6 0.22 1.8377 1.8365 1.8467
19 2005.09.09 07:39 s/l 6 0.22 1.8365 1.8365 1.8467 -26.40 416.20
20 2005.09.09 07:40 buy 7 0.21 1.8366 1.8350 1.8456
21 2005.09.09 07:40 modify 7 0.21 1.8366 1.8351 1.8456
22 2005.09.09 07:40 modify 7 0.21 1.8366 1.8353 1.8456
23 2005.09.09 07:40 modify 7 0.21 1.8366 1.8354 1.8456
24 2005.09.09 07:41 s/l 7 0.21 1.8354 1.8354 1.8456 -25.20 391.00
25 2005.09.09 07:49 buy 8 0.20 1.8366 1.8350 1.8456
26 2005.09.09 07:49 modify 8 0.20 1.8366 1.8351 1.8456
27 2005.09.09 07:50 s/l 8 0.20 1.8351 1.8351 1.8456 -30.00 361.00
28 2005.09.09 07:53 buy 9 0.18 1.8366 1.8350 1.8456
29 2005.09.09 07:53 modify 9 0.18 1.8366 1.8351 1.8456
30 2005.09.09 07:53 modify 9 0.18 1.8366 1.8352 1.8456
31 2005.09.09 07:56 modify 9 0.18 1.8366 1.8353 1.8456
32 2005.09.09 07:59 s/l 9 0.18 1.8353 1.8353 1.8456 -23.40 337.60
33 2005.09.09 14:00 buy 10 0.17 1.8421 1.8409 1.8476
34 2005.09.09 14:01 s/l 10 0.17 1.8409 1.8409 1.8476 -20.40 317.20
35 2005.09.09 14:01 buy 11 0.16 1.8406 1.8399 1.8459
36 2005.09.09 14:03 s/l 11 0.16 1.8399 1.8399 1.8459 -11.20 306.00
37 2005.09.09 14:11 buy 12 0.15 1.8401 1.8385 1.8491
38 2005.09.09 14:11 modify 12 0.15 1.8401 1.8386 1.8491
39 2005.09.09 14:12 modify 12 0.15 1.8401 1.8402 1.8491
40 2005.09.09 14:12 s/l 12 0.15 1.8402 1.8402 1.8491 1.50 307.50
41 2005.09.09 14:12 buy 13 0.15 1.8403 1.8387 1.8493
42 2005.09.09 14:12 modify 13 0.15 1.8403 1.8391 1.8493
43 2005.09.09 14:12 s/l 13 0.15 1.8391 1.8391 1.8493 -18.00 289.50
44 2005.09.09 14:14 buy 14 0.14 1.8405 1.8389 1.8495
45 2005.09.09 14:14 modify 14 0.14 1.8405 1.8392 1.8495
46 2005.09.09 14:18 modify 14 0.14 1.8405 1.8393 1.8495
47 2005.09.09 14:21 s/l 14 0.14 1.8393 1.8393 1.8495 -16.80 272.70
48 2005.09.09 14:22 buy 15 0.14 1.8402 1.8386 1.8492
49 2005.09.09 14:22 modify 15 0.14 1.8402 1.8390 1.8492
50 2005.09.09 14:24 s/l 15 0.14 1.8390 1.8390 1.8492 -16.80 255.90
51 2005.09.09 14:26 buy 16 0.13 1.8401 1.8385 1.8491
52 2005.09.09 14:26 modify 16 0.13 1.8401 1.8386 1.8491
53 2005.09.09 14:27 modify 16 0.13 1.8401 1.8389 1.8491
54 2005.09.09 14:27 modify 16 0.13 1.8401 1.8402 1.8491
55 2005.09.09 14:27 modify 16 0.13 1.8401 1.8405 1.8491
56 2005.09.09 14:27 modify 16 0.13 1.8401 1.8406 1.8491
57 2005.09.09 14:27 modify 16 0.13 1.8401 1.8407 1.8491
58 2005.09.09 14:28 s/l 16 0.13 1.8407 1.8407 1.8491 7.80 263.70
59 2005.09.09 14:28 buy 17 0.13 1.8408 1.8392 1.8498
60 2005.09.09 14:28 modify 17 0.13 1.8408 1.8393 1.8498
61 2005.09.09 14:28 modify 17 0.13 1.8408 1.8394 1.8498
62 2005.09.09 14:28 modify 17 0.13 1.8408 1.8395 1.8498
63 2005.09.09 14:31 modify 17 0.13 1.8408 1.8396 1.8498
64 2005.09.09 14:34 s/l 17 0.13 1.8396 1.8396 1.8498 -15.60 248.10
65 2005.09.09 14:34 buy 18 0.12 1.8398 1.8382 1.8488
66 2005.09.09 14:34 modify 18 0.12 1.8398 1.8385 1.8488
67 2005.09.09 14:41 modify 18 0.12 1.8398 1.8398 1.8488
68 2005.09.09 14:41 s/l 18 0.12 1.8398 1.8398 1.8488 0.00 248.10
69 2005.09.09 14:41 buy 19 0.12 1.8399 1.8383 1.8489
70 2005.09.09 14:41 modify 19 0.12 1.8399 1.8386 1.8489
71 2005.09.09 15:00 modify 19 0.12 1.8399 1.8405 1.8489
72 2005.09.09 15:01 modify 19 0.12 1.8399 1.8407 1.8489
73 2005.09.09 15:02 s/l 19 0.12 1.8407 1.8407 1.8489 9.60 257.70
74 2005.09.09 15:02 buy 20 0.13 1.8408 1.8392 1.8498
75 2005.09.09 15:02 modify 20 0.13 1.8408 1.8395 1.8498
76 2005.09.09 15:05 modify 20 0.13 1.8408 1.8396 1.8498
77 2005.09.09 15:17 modify 20 0.13 1.8408 1.8409 1.8498
78 2005.09.09 15:19 modify 20 0.13 1.8408 1.8410 1.8498
79 2005.09.09 15:20 s/l 20 0.13 1.8410 1.8410 1.8498 2.60 260.30
80 2005.09.09 15:20 buy 21 0.13 1.8409 1.8393 1.8499
81 2005.09.09 15:20 modify 21 0.13 1.8409 1.8394 1.8499
82 2005.09.09 15:21 modify 21 0.13 1.8409 1.8396 1.8499
83 2005.09.09 15:22 modify 21 0.13 1.8409 1.8397 1.8499
84 2005.09.09 15:27 modify 21 0.13 1.8409 1.8412 1.8499
85 2005.09.09 15:30 s/l 21 0.13 1.8412 1.8412 1.8499 3.90 264.20
86 2005.09.09 15:30 buy 22 0.13 1.8392 1.8376 1.8482
87 2005.09.09 15:30 modify 22 0.13 1.8392 1.8380 1.8482
88 2005.09.11 23:00 modify 22 0.13 1.8392 1.8394 1.8482
89 2005.09.11 23:00 modify 22 0.13 1.8392 1.8395 1.8482
90 2005.09.11 23:00 modify 22 0.13 1.8392 1.8396 1.8482
91 2005.09.11 23:00 modify 22 0.13 1.8392 1.8397 1.8482
92 2005.09.11 23:02 modify 22 0.13 1.8392 1.8398 1.8482
93 2005.09.11 23:03 modify 22 0.13 1.8392 1.8399 1.8482
94 2005.09.11 23:05 modify 22 0.13 1.8392 1.8400 1.8482
95 2005.09.11 23:11 modify 22 0.13 1.8392 1.8401 1.8482
96 2005.09.11 23:19 modify 22 0.13 1.8392 1.8402 1.8482
97 2005.09.11 23:20 modify 22 0.13 1.8392 1.8403 1.8482
98 2005.09.11 23:21 modify 22 0.13 1.8392 1.8404 1.8482
99 2005.09.11 23:32 modify 22 0.13 1.8392 1.8405 1.8482
100 2005.09.11 23:32 modify 22 0.13 1.8392 1.8406 1.8482
101 2005.09.11 23:35 modify 22 0.13 1.8392 1.8407 1.8482
102 2005.09.11 23:35 modify 22 0.13 1.8392 1.8408 1.8482
103 2005.09.11 23:40 modify 22 0.13 1.8392 1.8409 1.8482
104 2005.09.11 23:45 s/l 22 0.13 1.8409 1.8409 1.8482 22.10 286.30
105 2005.09.11 23:45 buy 23 0.14 1.8411 1.8395 1.8501
106 2005.09.11 23:45 modify 23 0.14 1.8411 1.8396 1.8501
107 2005.09.11 23:45 modify 23 0.14 1.8411 1.8397 1.8501
108 2005.09.11 23:45 modify 23 0.14 1.8411 1.8398 1.8501
109 2005.09.11 23:46 modify 23 0.14 1.8411 1.8399 1.8501
110 2005.09.11 23:48 modify 23 0.14 1.8411 1.8411 1.8501
111 2005.09.11 23:50 modify 23 0.14 1.8411 1.8412 1.8501
112 2005.09.11 23:51 modify 23 0.14 1.8411 1.8413 1.8501
113 2005.09.11 23:51 modify 23 0.14 1.8411 1.8414 1.8501
114 2005.09.12 00:00 s/l 23 0.14 1.8414 1.8414 1.8501 4.20 290.50
115 2005.09.12 00:00 buy 24 0.15 1.8415 1.8399 1.8505
116 2005.09.12 00:04 modify 24 0.15 1.8415 1.8401 1.8505
117 2005.09.12 00:13 modify 24 0.15 1.8415 1.8402 1.8505
118 2005.09.12 02:27 s/l 24 0.15 1.8402 1.8402 1.8505 -19.50 271.00
119 2005.09.12 02:27 buy 25 0.14 1.8403 1.8387 1.8493
120 2005.09.12 02:28 modify 25 0.14 1.8403 1.8391 1.8493
121 2005.09.12 02:29 s/l 25 0.14 1.8391 1.8391 1.8493 -16.80 254.20
122 2005.09.21 09:59 buy 26 0.13 1.8082 1.8070 1.8137
123 2005.09.21 10:29 modify 26 0.13 1.8082 1.8087 1.8137
124 2005.09.21 10:37 modify 26 0.13 1.8082 1.8090 1.8137
125 2005.09.21 10:45 modify 26 0.13 1.8082 1.8092 1.8137
126 2005.09.21 10:46 modify 26 0.13 1.8082 1.8093 1.8137
127 2005.09.21 10:46 modify 26 0.13 1.8082 1.8094 1.8137
128 2005.09.21 10:47 modify 26 0.13 1.8082 1.8096 1.8137
129 2005.09.21 10:47 modify 26 0.13 1.8082 1.8096 1.8137
130 2005.09.21 10:47 modify 26 0.13 1.8082 1.8098 1.8137
131 2005.09.21 10:50 modify 26 0.13 1.8082 1.8099 1.8137
132 2005.09.21 10:51 modify 26 0.13 1.8082 1.8100 1.8137
133 2005.09.21 11:00 modify 26 0.13 1.8082 1.8102 1.8137
134 2005.09.21 11:00 modify 26 0.13 1.8082 1.8103 1.8137
135 2005.09.21 11:06 s/l 26 0.13 1.8103 1.8103 1.8137 27.30 281.50
136 2005.09.21 11:06 buy 27 0.14 1.8102 1.8095 1.8155
137 2005.09.21 11:30 s/l 27 0.14 1.8095 1.8095 1.8155 -9.80 271.70
138 2005.09.21 11:30 buy 28 0.14 1.8094 1.8078 1.8184
139 2005.09.21 11:30 modify 28 0.14 1.8094 1.8080 1.8184
140 2005.09.21 11:30 modify 28 0.14 1.8094 1.8082 1.8184
141 2005.09.21 11:59 modify 28 0.14 1.8094 1.8109 1.8184
142 2005.09.21 12:24 s/l 28 0.14 1.8109 1.8109 1.8184 21.00 292.70
143 2005.09.21 12:24 buy 29 0.15 1.8106 1.8090 1.8196
144 2005.09.21 12:24 modify 29 0.15 1.8106 1.8092 1.8196
145 2005.09.21 13:13 modify 29 0.15 1.8106 1.8094 1.8196
146 2005.09.21 14:00 modify 29 0.15 1.8106 1.8107 1.8196
147 2005.09.21 14:00 modify 29 0.15 1.8106 1.8108 1.8196
148 2005.09.21 14:00 modify 29 0.15 1.8106 1.8109 1.8196
149 2005.09.21 14:00 modify 29 0.15 1.8106 1.8111 1.8196
150 2005.09.21 14:00 modify 29 0.15 1.8106 1.8111 1.8196
this is how the trailing stop is moving in my current version....I started with 1000 initially cause it won't start with 500 and open any orders???
2 2005.09.09 06:00 modify 1 0.10 1.8394 1.8379 1.8484 0.00 1000.00
3 2005.09.09 06:07 modify 1 0.10 1.8394 1.8380 1.8484 0.00 1000.00
4 2005.09.09 06:07 modify 1 0.10 1.8394 1.8382 1.8484 0.00 1000.00
5 2005.09.09 06:52 s/l 1 0.10 1.8382 1.8382 1.8484 -12.00 988.00
6 2005.09.09 06:52 buy 2 0.10 1.8385 1.8373 1.8440 0.00 988.00
7 2005.09.09 07:13 s/l 2 0.10 1.8373 1.8373 1.8440 -12.00 976.00
8 2005.09.09 07:13 buy 3 0.10 1.8378 1.8362 1.8468 0.00 976.00
9 2005.09.09 07:15 modify 3 0.10 1.8378 1.8363 1.8468 0.00 976.00
10 2005.09.09 07:15 modify 3 0.10 1.8378 1.8364 1.8468 0.00 976.00
11 2005.09.09 07:19 modify 3 0.10 1.8378 1.8365 1.8468 0.00 976.00
12 2005.09.09 07:30 s/l 3 0.10 1.8365 1.8365 1.8468 -13.00 963.00
13 2005.09.09 07:30 buy 4 0.10 1.8374 1.8358 1.8464 0.00 963.00
14 2005.09.09 07:30 s/l 4 0.10 1.8358 1.8358 1.8464 -16.00 947.00
15 2005.09.09 07:35 buy 5 0.10 1.8369 1.8353 1.8459 0.00 947.00
16 2005.09.09 07:35 modify 5 0.10 1.8369 1.8355 1.8459 0.00 947.00
17 2005.09.09 07:35 modify 5 0.10 1.8369 1.8356 1.8459 0.00 947.00
18 2005.09.09 07:35 modify 5 0.10 1.8369 1.8357 1.8459 0.00 947.00
19 2005.09.09 07:36 modify 5 0.10 1.8369 1.8375 1.8459 0.00 947.00
20 2005.09.09 07:37 s/l 5 0.10 1.8375 1.8375 1.8459 6.00 953.00
21 2005.09.09 07:37 buy 6 0.50 1.8379 1.8363 1.8469 0.00 953.00
22 2005.09.09 07:37 modify 6 0.50 1.8379 1.8364 1.8469 0.00 953.00
23 2005.09.09 07:38 modify 6 0.50 1.8379 1.8366 1.8469 0.00 953.00
24 2005.09.09 07:39 s/l 6 0.50 1.8366 1.8366 1.8469 -65.00 888.00
25 2005.09.09 07:40 buy 7 0.10 1.8368 1.8352 1.8458 0.00 888.00
26 2005.09.09 07:40 modify 7 0.10 1.8368 1.8353 1.8458 0.00 888.00
27 2005.09.09 07:40 modify 7 0.10 1.8368 1.8354 1.8458 0.00 888.00
28 2005.09.09 07:41 s/l 7 0.10 1.8354 1.8354 1.8458 -14.00 874.00
29 2005.09.09 07:49 buy 8 0.10 1.8368 1.8352 1.8458 0.00 874.00
30 2005.09.09 07:50 s/l 8 0.10 1.8352 1.8352 1.8458 -16.00 858.00
31 2005.09.09 07:53 buy 9 0.10 1.8368 1.8352 1.8458 0.00 858.00
32 2005.09.09 07:56 modify 9 0.10 1.8368 1.8353 1.8458 0.00 858.00
33 2005.09.09 07:57 modify 9 0.10 1.8368 1.8355 1.8458 0.00 858.00
34 2005.09.09 07:57 modify 9 0.10 1.8368 1.8356 1.8458 0.00 858.00
35 2005.09.09 07:59 s/l 9 0.10 1.8356 1.8356 1.8458 -12.00 846.00
36 2005.09.09 14:00 buy 10 0.10 1.8423 1.8411 1.8478 0.00 846.00
37 2005.09.09 14:01 s/l 10 0.10 1.8411 1.8411 1.8478 -12.00 834.00
38 2005.09.09 14:01 buy 11 0.10 1.8406 1.8390 1.8496 0.00 834.00
39 2005.09.09 14:01 modify 11 0.10 1.8406 1.8391 1.8496 0.00 834.00
40 2005.09.09 14:02 modify 11 0.10 1.8406 1.8392 1.8496 0.00 834.00
41 2005.09.09 14:02 modify 11 0.10 1.8406 1.8393 1.8496 0.00 834.00
42 2005.09.09 14:03 modify 11 0.10 1.8406 1.8394 1.8496 0.00 834.00
43 2005.09.09 14:03 s/l 11 0.10 1.8394 1.8394 1.8496 -12.00 822.00
44 2005.09.09 14:11 buy 12 0.10 1.8408 1.8392 1.8498 0.00 822.00
45 2005.09.09 14:11 modify 12 0.10 1.8408 1.8394 1.8498 0.00 822.00
46 2005.09.09 14:11 modify 12 0.10 1.8408 1.8395 1.8498 0.00 822.00
47 2005.09.09 14:11 modify 12 0.10 1.8408 1.8396 1.8498 0.00 822.00
48 2005.09.09 14:12 s/l 12 0.10 1.8396 1.8396 1.8498 -12.00 810.00
49 2005.09.09 14:14 buy 13 0.10 1.8407 1.8391 1.8497 0.00 810.00
50 2005.09.09 14:14 modify 13 0.10 1.8407 1.8395 1.8497 0.00 810.00
51 2005.09.09 14:21 s/l 13 0.10 1.8395 1.8395 1.8497 -12.00 798.00
52 2005.09.09 14:22 buy 14 0.10 1.8404 1.8388 1.8494 0.00 798.00
53 2005.09.09 14:22 modify 14 0.10 1.8404 1.8391 1.8494 0.00 798.00
54 2005.09.09 14:22 modify 14 0.10 1.8404 1.8392 1.8494 0.00 798.00
55 2005.09.09 14:22 s/l 14 0.10 1.8392 1.8392 1.8494 -12.00 786.00
56 2005.09.09 14:23 buy 15 0.10 1.8403 1.8387 1.8493 0.00 786.00
57 2005.09.09 14:23 modify 15 0.10 1.8403 1.8388 1.8493 0.00 786.00
58 2005.09.09 14:23 modify 15 0.10 1.8403 1.8390 1.8493 0.00 786.00
59 2005.09.09 14:23 modify 15 0.10 1.8403 1.8391 1.8493 0.00 786.00
60 2005.09.09 14:24 s/l 15 0.10 1.8391 1.8391 1.8493 -12.00 774.00
61 2005.09.09 14:26 buy 16 0.10 1.8403 1.8387 1.8493 0.00 774.00
62 2005.09.09 14:27 modify 16 0.10 1.8403 1.8391 1.8493 0.00 774.00
63 2005.09.09 14:27 modify 16 0.10 1.8403 1.8405 1.8493 0.00 774.00
64 2005.09.09 14:27 modify 16 0.10 1.8403 1.8406 1.8493 0.00 774.00
65 2005.09.09 14:27 modify 16 0.10 1.8403 1.8408 1.8493 0.00 774.00
66 2005.09.09 14:28 s/l 16 0.10 1.8408 1.8408 1.8493 5.00 779.00
67 2005.09.09 14:28 buy 17 0.40 1.8410 1.8394 1.8500 0.00 779.00
68 2005.09.09 14:30 modify 17 0.40 1.8410 1.8398 1.8500 0.00 779.00
69 2005.09.09 14:33 s/l 17 0.40 1.8398 1.8398 1.8500 -48.00 731.00
70 2005.09.09 14:33 buy 18 0.10 1.8401 1.8385 1.8491 0.00 731.00
71 2005.09.09 14:33 modify 18 0.10 1.8401 1.8386 1.8491 0.00 731.00
72 2005.09.09 14:36 modify 18 0.10 1.8401 1.8387 1.8491 0.00 731.00
73 2005.09.09 14:36 modify 18 0.10 1.8401 1.8388 1.8491 0.00 731.00
74 2005.09.09 15:01 modify 18 0.10 1.8401 1.8401 1.8491 0.00 731.00
75 2005.09.09 15:19 modify 18 0.10 1.8401 1.8402 1.8491 0.00 731.00
76 2005.09.09 15:27 modify 18 0.10 1.8401 1.8403 1.8491 0.00 731.00
77 2005.09.09 15:28 modify 18 0.10 1.8401 1.8407 1.8491 0.00 731.00
78 2005.09.09 15:29 s/l 18 0.10 1.8407 1.8407 1.8491 6.00 737.00
79 2005.09.09 15:29 buy 19 0.40 1.8411 1.8395 1.8501 0.00 737.00
80 2005.09.09 15:30 s/l 19 0.40 1.8395 1.8395 1.8501 -64.00 673.00
81 2005.09.09 15:30 buy 20 0.10 1.8394 1.8378 1.8484 0.00 673.00
82 2005.09.09 15:30 modify 20 0.10 1.8394 1.8380 1.8484 0.00 673.00
83 2005.09.09 15:49 modify 20 0.10 1.8394 1.8380 1.8484 0.00 673.00
84 2005.09.09 15:54 modify 20 0.10 1.8394 1.8382 1.8484 0.00 673.00
85 2005.09.09 16:03 s/l 20 0.10 1.8382 1.8382 1.8484 -12.00 661.00
86 2005.09.09 16:03 buy 21 0.10 1.8385 1.8369 1.8475 0.00 661.00
87 2005.09.09 16:03 modify 21 0.10 1.8385 1.8373 1.8475 0.00 661.00
88 2005.09.09 17:00 modify 21 0.10 1.8385 1.8389 1.8475 0.00 661.00
89 2005.09.09 17:00 modify 21 0.10 1.8385 1.8390 1.8475 0.00 661.00
90 2005.09.09 17:30 s/l 21 0.10 1.8390 1.8390 1.8475 5.00 666.00
91 2005.09.09 17:30 buy 22 0.30 1.8394 1.8378 1.8484 0.00 666.00
92 2005.09.09 17:55 modify 22 0.30 1.8394 1.8380 1.8484 0.00 666.00
93 2005.09.09 18:18 modify 22 0.30 1.8394 1.8382 1.8484 0.00 666.00
94 2005.09.09 19:00 s/l 22 0.30 1.8382 1.8382 1.8484 -36.00 630.00
95 2005.09.09 19:00 buy 23 0.10 1.8386 1.8370 1.8476 0.00 630.00
96 2005.09.09 19:00 modify 23 0.10 1.8386 1.8372 1.8476 0.00 630.00
97 2005.09.09 19:02 modify 23 0.10 1.8386 1.8372 1.8476 0.00 630.00
98 2005.09.09 20:29 modify 23 0.10 1.8386 1.8386 1.8476 0.00 630.00
99 2005.09.09 20:30 modify 23 0.10 1.8386 1.8387 1.8476 0.00 630.00
100 2005.09.09 20:30 modify 23 0.10 1.8386 1.8388 1.8476 0.00 630.00
I had hunch that it was a weekend thing....sure enough Interbank's platform will accept 0.01 lots today...and I notice that they have a 5 pip spread on the GBPUSD too.
Ya know brokers and the way they change the rules are a real pain in the a$$.
why wont people post results with >=90% modeling quality
why wont people post results with >=90% modeling quality
in order to post results with that level of quality they must have the data to produce that level of quality...
I have gone to some effort to get the data I have and I wish I could do better getting the alpari historical data to actually install in the history center but alas I've only succeeded to a certain point and 89% is the best I've managed so far. If you can show me how to do better please do so.