- Search Energy EXCH
-
RedLineFred replied Oct 19, 2015Not sure i can agree with your thinking. If long terms trends are where this approach should excel, then why is the equity chart so flat over the last 150 odd trades? By most measures the EURUSD has been in a down trend since mid 2014, yet the EA ...
Trade based on Autoregressive Model
-
RedLineFred replied Oct 15, 2015Interesting question and i am struggling to think why but... why not sort each array to find the highest and lowest in each and then take those values into a summary array and sort again
How to calculate highest or lowest value from multiple arrays?
-
RedLineFred replied Oct 14, 2015Hi Kevin, Try This: url cheers Fred
I will code your EAs and Indicators for no charge
-
RedLineFred replied Aug 24, 2015You changed more code than what i suggested. Go back to the original DrawRules() subroutine and reinstate the original code less the one line i suggested you delete. void DrawRules() { if(Signal1!="") { CreateLabel(tag+"1", Signal1, ...
I will code your EAs and Indicators for no charge
-
RedLineFred replied Aug 23, 2015Just need to add this line to the code at the top, just under the line with the similar setting for x=: input int y = 6; // Indent from top then delete this line from the code at void DrawRules(): int y=6;
I will code your EAs and Indicators for no charge
-
RedLineFred replied Aug 22, 2015keep posting, some of us are very interested in your point of view. I only wish i could contribute something meaningful to the conversation
Quant basket trader? I need your help!
-
RedLineFred replied Aug 13, 2015double dustatic() { if(!flagset) { double sta = bid; flagset = true; } } when ready to take another look at sta, just reset the flag
Assigning a bid value to a fixed variable
-
RedLineFred replied Aug 10, 2015You can set the date range by limiting the Account History within Terminal MQL4 help states:- The history list size depends on the current settings of the "Account history" tab of the terminal.
I will code your EAs and Indicators for no charge
-
RedLineFred replied Aug 10, 2015sorry, don't know what the issue is as it works for me, suggest you try finding a more recent version of kernel32.dll, but cant be sure
Basket Trading EA
-
RedLineFred replied Aug 9, 2015minor changes and it now compiles, but is untested file
Basket Trading EA
-
RedLineFred replied Aug 9, 2015Have you seen what Copernicus is doing with respect to SDC channels for longer term trends? Might be worth a look - at least from the point of view of staying in the trend. url
Reverse Engineering a Profitable System (REPS)
-
RedLineFred replied Jul 15, 2015love the concept and will be interested in the discussion
The Only Real Edge: Trading from Breakeven
-
RedLineFred replied Jun 25, 2015sorry to take us back to the wife following analogy, but if we are at the right hand edge, we cant see the wife, until after she has moved
Forex Dream Chasers - The 90% rule of randomness
-
RedLineFred replied Jun 18, 2015An idea that has worked for me is to set a "Busy" flag that goes true when you do the intensive calcs, and then resets to false on completion. Then just check the flag status within OnTick, and if busy return without invoking the calc sections.
I will code your EAs and Indicators for no charge
-
RedLineFred replied Jun 11, 2015the line version is below. the candle version will take more work, so i'll leave it to others cheers file Fred
Simple indicator modification request
-
RedLineFred replied Jun 4, 2015You could try this: double verifyLotSize(string argSymbol, double argLotSize) { if(argLotSize < MarketInfo(argSymbol,MODE_MINLOT)) { argLotSize = MarketInfo(argSymbol,MODE_MINLOT); } else if(argLotSize > MarketInfo(argSymbol,MODE_MAXLOT)) { ...
I will code your EAs and Indicators for no charge
-
RedLineFred replied Jun 3, 2015Are you sure lastTradeTicket() is working to correctly identify the last trade? If not then martinsize will not be updated and the subroutine will return a lot size of zero - hence the error.
I will code your EAs and Indicators for no charge
-
RedLineFred replied May 7, 2015Over a month and no new posts. Seems your thread has lost its way. Pity really, as i was just getting into the concept.
Diversified Trend Trading Approach
-
RedLineFred replied May 6, 2015Hi mate, I haven't looked at the file, but from your code snippet it seems you are testing for values of i = 0. This means you are also looking at the current bar and as such it will redraw. Suggest you only use "i>0" and not "i>=0" in your for ...
EA+Indicator,Problems found with picture and codes in testing!