FF is strangely quiet at the moment.... and now I know why: Steve "The Coding Machine" Hopwood is out of town.
We miss you, Steve
We miss you, Steve

Hanover replies to PMs 1,424 replies
Trading profitably using Recent Strength 58 replies
DislikedI forgot to take my meds with me, so my occd is itching like mad, so the 15 ea's I have coded since returning are.................
I do not properly understand how to extract values from the output file generated by Recent Strength. Once I do so, I can make H a much more flexible bot.
Ignored
DislikedI do not properly understand how to extract values from the output file generated by Recent Strength. Once I do so, I can make H a much more flexible bot.Ignored
#define _AUD 0 #define _CAD 1 #define _CHF 2 #define _EUR 3 #define _GBP 4 #define _JPY 5 #define _NZD 6 #define _USD 7 #define _M1 0 #define _M5 1 #define _M15 2 #define _M30 3 #define _H1 4 #define _H4 5 #define _D1 6 #define _W1 7 #define _MN 8
DislikedSteve,
I've had a quick look at your EA and I see you've copied the function LoadRSvalues() from another one of my indys. Good idea, will save you some coding.
What I suggest you also do is include something like the following near the top of your EA:
The LoadRSvalues()...Inserted Code#define _AUD 0 #define _CAD 1 #define _CHF 2 #define _EUR 3 #define _GBP 4 #define _JPY 5 #define _NZD 6 #define _USD 7 #define _M1 0 #define _M5 1 #define _M15 2 #define _M30 3 #define _H1 4 #define _H4 5 #define _D1 6 #define _W1 7 #define _MN 8Ignored
DislikedSteve,
I've had a quick look at your EA and I see you've copied the function LoadRSvalues() from another one of my indys. Good idea, will save you some coding.
What I suggest you also do is include something like the following near the top of your EA:
The LoadRSvalues()...Inserted Code#define _AUD 0 #define _CAD 1 #define _CHF 2 #define _EUR 3 #define _GBP 4 #define _JPY 5 #define _NZD 6 #define _USD 7 #define _M1 0 #define _M5 1 #define _M15 2 #define _M30 3 #define _H1 4 #define _H4 5 #define _D1 6 #define _W1 7 #define _MN 8Ignored
DislikedGet a grip fella. Of course it is. How do you think it survives my baths?
Just remember, I am not actually human. **I AM EPSILON MEGASTAR**
Oops. Another brief reversion to type there. Must stop doing that. I will take some meds.......Ignored
DislikedI have just spent a happy half-hour playing with this.
Oh wow, the potential is huge. Thanks again David, on all our behalves.
Nothing will happen immediately folks. I need a bath first.
Ignored
DislikedSteve,
This is probably stating the obvious, but the strongest currency has the steepest upward slope, and the weakest has the steepest downward slope... Look at the strong, clean uptrend generated by pairing AUD and USD. Then look at the sideways, jagged plot created by pairing highly positive correlated currencies like USD and JPY...OK, enough background info, this is Steve's thread, and I want to see how it progresses without undue influence from me. Hence I will make myself scarce.
DavidIgnored
TimeFrames = "M1, M5, M15, M30, H1, H4, D1, W1, MN"; NumPoints = 20; BasePoint = 0; HistoricalShift = 0; SmoothingSMA = 4; SetBaseCurrency = ""; UseTickvolForWgt = false; ShowPointCount = false; LegendValues = "-1A"; LegendVertSpacing = "3TL"; TextColor = Gray; TextFont = "Comic Sans MS"; TextSize = 13; RefreshEveryXMins = 1; OutputFile = "Output---Recent Strength.CSV"; ; ___Currency1___ = "AUD"; C1_Color = Green; C1_Style = 20; C1_Pairs_Wgts = "AUDCAD,100,AUDJPY,100,AUDNZD,100,AUDUSD,100,EURAUD,100,GBPAUD,100"; C1_ScaleFactor = 100; ; ___Currency2___ = "CAD"; C2_Color = SaddleBrown; C2_Style = 20; C2_Pairs_Wgts = "AUDCAD,100,CADCHF,100,CADJPY,100,EURCAD,100,GBPCAD,100,USDCAD,100"; C2_ScaleFactor = 100; ; ___Currency3___ = "CHF"; C3_Color = Yellow; C3_Style = 20; C3_Pairs_Wgts = "CADCHF,100,CHFJPY,100,EURCHF,100,GBPCHF,100,USDCHF,100"; C3_ScaleFactor = 100; ; ___Currency4___ = "EUR"; C4_Color = HotPink; C4_Style = 20; C4_Pairs_Wgts = "EURAUD,100,EURCAD,100,EURCHF,100,EURGBP,100,EURJPY,100,EURNZD,100,EURUSD,100"; C4_ScaleFactor = 100; ; ___Currency5___ = "GBP"; C5_Color = Crimson; C5_Style = 20; C5_Pairs_Wgts = "EURGBP,100,GBPAUD,100,GBPCAD,100,GBPCHF,100,GBPJPY,100,GBPUSD,100"; C5_ScaleFactor = 100; ; ___Currency6___ = "JPY"; C6_Color = DarkOrchid; C6_Style = 20; C6_Pairs_Wgts = "AUDJPY,100,CADJPY,100,CHFJPY,100,EURJPY,100,GBPJPY,100,NZDJPY,100,USDJPY,100"; C6_ScaleFactor = 100; ; ___Currency7___ = "NZD"; C7_Color = CornflowerBlue; C7_Style = 20; C7_Pairs_Wgts = "AUDNZD,100,EURNZD,100,NZDJPY,100,NZDUSD,100"; C7_ScaleFactor = 100; ; ___Currency8___ = "USD"; C8_Color = White; C8_Style = 20; C8_Pairs_Wgts = "AUDUSD,100,EURUSD,100,GBPUSD,100,NZDUSD,100,USDCAD,100,USDCHF,100,USDJPY,100"; C8_ScaleFactor = 100; ;