- Search Energy EXCH
-
ydaudw replied Jan 31, 2009wow — Wow, you have much more story than i do
You right, it was the 4th sister. I was away when the first & second was form. Should have taken the third too. 5Min Intraday System
-
ydaudw replied Jan 30, 2009Three little sister — I've been trading this system for a month now, overall i manage to bank in 130 pips this January
I like this system, thanks to Phillip, it is sad to see you go. Also I would like to say thanks to all who contribute to ...5Min Intraday System
-
ydaudw replied Jan 14, 2009You may refer to first post of this thread. Phil has kind enough to put a summary there. That's what i did. After reading all that links on first post, i go tru all the page one by one, in case i miss anything. The main key is discipline, do not ...
5Min Intraday System
-
ydaudw replied Nov 4, 2008Change Risk_Setting to 0. EA will use fixed lots you enter.
Trading System Using Relative Strength-Part 2
-
ydaudw replied Nov 4, 2008CCFpEA v1.2 (Build: Nov 4, 2008) — string Version = "CCFpEA v1.2 (Build: Nov 4, 2008)"; Additional parameter BarStart = 1; this affect how CCFp is calculated. Original strategy is using bar 1 and 2. If you want CCFp calculated in real time ...
Trading System Using Relative Strength-Part 2
-
ydaudw replied Nov 4, 2008I'm not sure what you are trying to say. Those are different pair? If there are new signal next 4H then EA will open new position. Let say: Now we got Buy signal on EURUSD, what happen on the next 4H: - If signal on EURUSD is disappear from the list ...
Trading System Using Relative Strength-Part 2
-
ydaudw replied Nov 4, 2008Couple of bug fixed. That's the original idea but I haven't work on multiple TimeFrame yet. So currently that does nothing. I tried to make my EA to become independent and complete trading tool set. By showing multiple TimeFrame allow us to see a ...
Trading System Using Relative Strength-Part 2
-
ydaudw replied Nov 3, 2008CCFpEA v1.1 (Build: Nov 3, 2008) — new version release = CCFpEA v1.1 (Build: Nov 3, 2008)
Trading System Using Relative Strength-Part 2
-
ydaudw replied Nov 3, 2008Check on Experts or Journal there should be something there.
Trading System Using Relative Strength-Part 2
-
ydaudw replied Nov 2, 2008No, its for individual pair not the whole basket. So each pair will have default 100 TakeProfit and 50 StopLos.
Trading System Using Relative Strength-Part 2
-
ydaudw replied Nov 2, 2008Perhaps you can put an options like mine. extern bool Trade_EURUSD = true; // spread 2 extern bool Trade_USDJPY = true; // spread 3 extern bool Trade_EURGBP = true; // spread 3 extern bool Trade_GBPUSD = true; // spread 4 extern bool Trade_USDCHF = ...
Trading System Using Relative Strength-Part 2
-
ydaudw replied Nov 2, 2008I found that when you switch timeframe sometimes CCFp return zero. So by identifying which pair is zero we can send out alert that bar history for that particular pair is not enough. I haven't found any better method yet. Regards, Daud
Trading System Using Relative Strength-Part 2
-
ydaudw replied Nov 2, 2008I put a warning message in my EA like below: Alert("EURUSD bar less than 100. Open new EURUSD chart with timeframe "+Period()+" to fix this"); This will fix return zero issue.
Trading System Using Relative Strength-Part 2
-
ydaudw replied Nov 2, 2008Your welcome. Hopes you can share your result with this EA.

Trading System Using Relative Strength-Part 2
-
ydaudw replied Nov 2, 2008Soonest all pairs receive first ticks, still need to be test though not sure how much accurate is this. Risk need to be set 0 if you want to use your own lot size. MM not necessary to be 0, unless you don't want EA to manage your trade. Yes, TP and ...
Trading System Using Relative Strength-Part 2
-
ydaudw replied Nov 1, 2008EA — Couple of Settings i think necessary to point out: ShutdownEA = false; => If you don't want EA to open another trade. CloseAllPosition = false; ==> Emergency close to all open position made by EA extern int TakeProfit = 100; ==> Initial ...
Trading System Using Relative Strength-Part 2
-
ydaudw replied Oct 29, 2008Never mind. I found it
Moderator, kindly delete this thread.What is "no error" exactly?
-
What is "no error" exactly?
Started Oct 29, 2008|Platform Tech|1 reply
My OrderSend() function just returned with an error of "no error". It returned false but there ...
-
ydaudw replied Oct 20, 2008Hi FerruFx, I wonder, how you actually check this?
Trading System Using Relative Strength-Part 2
-
ydaudw replied Aug 4, 2008How about this? //---- go trading only for first tiks of new bar if(Volume[0]>1) return; else OrderSend(...)
How to send order at the close of the bar?