- Search Energy EXCH
-
RedLineFred replied May 5, 2016hopefully this is what you were looking for:
I will code your EAs and Indicators for no charge
-
RedLineFred replied May 3, 2016sorry mate didnt see your post
I will code your EAs and Indicators for no charge
-
RedLineFred replied May 2, 2016Add the info to your current indicator. The two values you are looking for are UpLine[0] DownLine[0] So call the following routine to create two labels converting the two values to strings and then assigning them to text in the call: ...
I will code your EAs and Indicators for no charge
-
RedLineFred replied Apr 27, 2016You will need to look very closely at your indicators and streamline as much as possible. There will be code that can be optimised and even eliminated, so check carefully as most code grows with error fixes and work arounds. Another simple solution ...
Speed up indicator and EA calculations
-
RedLineFred replied Apr 20, 2016Depends on what you call a bug. The coder should be able to deliver a working EA that runs without "error", where error is a coding logic or syntax mistake. However, if it doesn't perform as you expected, then this shouldn't be seen as a bug but ...
Expected bugs from a brand new EA
-
RedLineFred replied Apr 20, 2016How did you declare the Array? What size is it? An indicator will manage the array differently to an EA, so you need to ensure you have a sufficiently large array to hold all the expected values.
Please help: Getting "Array Out of Range" in EA
-
RedLineFred replied Mar 22, 2016You could try saving it as a global variable ~ GlobalVariableSet
Accumulative Profits Grid System
-
RedLineFred replied Mar 15, 2016this might get you started: url
I will code your EAs and Indicators for no charge
-
RedLineFred replied Feb 29, 2016You could use either but it made more sense to me to use the open as it gives me one bar to execute the trade logic of the EA before a new bar comes along. Using the close leaves you hanging, if for example, you want to trade the close of the Friday ...
Backtesting discussion
-
RedLineFred replied Feb 28, 2016There is another element to backtesting that hasn't yet been discussed, and that it the platform used to carry out the testing. Many here speak of MT4 Strategy Tester and good quality Tick data, but if you study the way Strategy Tester works you ...
Backtesting discussion
-
RedLineFred replied Jan 6, 2016to get the data at the end of the test run call DebugFile from OnDeinit() and pass your variables (once converted to strings) using the code below //+----------------------------------------------------------------------------+ // Outputs up to 8 ...
How to write contents of variables to a CSV file?
-
RedLineFred replied Nov 30, 2015is this what you are looking for?
Profitable trading system (Need EA to be written)
-
RedLineFred replied Nov 29, 2015I am not sure your stats offer much to dispel the idea of entering early. As i understand it your entries are based on breakouts, or higher highs, lower lowers once a trend identifies itself by producing a valid SDC. As such your results are on ...
Diversified Trend Trading Approach
-
RedLineFred replied Nov 25, 2015some would argue that if there is a clear trend in play - why wait? he who hesitates is lost...
Diversified Trend Trading Approach
-
RedLineFred replied Nov 25, 2015The message is only a warning and will not affect the operation of the Indicator. If you want to fix it, so you wont get the message, you need to add another "return" into the appropriate line of code - (sorry didn't look to see where).
I will code your EAs and Indicators for no charge
-
RedLineFred replied Oct 28, 2015Darren, a little confused on the exits. Could you please explain again the two trades in one direction waiting for a reversal trade. In your video you show what looks like a profitable exit, but didn't we get a reversal a lot earlier? See my red ...
Trade with 60
-
RedLineFred replied Oct 23, 2015Suggest you delete the line every time you call Set_Sl_Move() - just add the ObjectDelete(...) line as the first line in the subroutine. In this way the line is deleted and only redrawn if the conditions are still correct.
Need Help With P/L EA
-
RedLineFred replied Oct 22, 2015Your code is being executed every time your subroutine Set_Sl_Move() is run and so the line will be redrawn each time as you don't have a condition check on the drawing process. Suggest you add this in front of your draw command: if(!al) ...
Need Help With P/L EA