- Search Energy EXCH
-
RedLineFred replied Apr 26, 2015The code should be easy enough to develop, but i doubt you will be able to trade it successfully. I fear you will be clicking away and getting deeper into trouble with every click.
Adaptive Martingale Manager
-
RedLineFred replied Apr 22, 2015This version compiles but is untested - hope it helps.
I will code your EAs and Indicators for no charge
-
RedLineFred replied Apr 8, 2015Rather than use a Martingale multipler, try this idea, posted here: url it ramps in and out and from my observations results in a larger overall return if you have a better than 50% success factor.
Weighted Coin Toss Trading
-
RedLineFred replied Mar 27, 2015if you correct this error (return was in the wrong place): int init() { return(0); } it compiles ok
I will code your EAs and Indicators for no charge
-
RedLineFred replied Mar 25, 2015Hi C and others, I am enjoying this thought provoking thread and trying to come to grips with the methodology and process. I find it easier to work through the ideas off-line and so tend to create a pdf of anything interesting. You might find the ...
Diversified Trend Trading Approach
-
RedLineFred replied Feb 12, 2015You might be interested in this post: url
Donchian Channel and other breakout methods
-
RedLineFred replied Feb 11, 2015I cant be sure but have you tried including the whole file path name, starting with the drive letter? Something like: "F:\Forex\Terminal\Common\Files\1todo" rather than just the local directory name itself.
Need Help with FileMove from Common Folder to Common Folder
-
RedLineFred replied Feb 3, 2015Open your MT4 terminal, click File>Open Data Folder this is where you find your Indicators EAs and scripts, in this folder structure inside MQL4\Indicators MQL4\Experts and MQL4\Scripts
DSS Scalping system 5/15m TF
-
RedLineFred replied Dec 9, 2014From my experience, converting my old code to new hasnt been that difficult or time consuming. A few rules need to be followed but many routines will run unimpeded. If an Indi or EA was useful, it's probably worth the effort, at least it is for me.
Hanover replies to PMs
-
RedLineFred replied Nov 25, 2014A suggestion only, not to deviate from the concept, but if we have a fair percentage of trades moving to BE and then on to healthy R levels only to turn back and close out at BE, why not slide the SL up 5 pips once we reach a point we are happy with ...
Extracted Thread (per thread starter's request)
-
RedLineFred replied Nov 20, 2014Hi Fez, a question if i may. How are you defining risk? a 3% risk on a $3000 account should see a max loss of $90. If you were down to $600 this would seem a much larger risk ~ 80% Love where this is going BTW Fred
Extracted Thread (per thread starter's request)
-
RedLineFred replied Nov 11, 2014I use this to read from a news csv file which only has in it the following format: 2014.10.28 14:25 The file is read and the date and time read into an array which is then used to halt trading. in my EA the code is: //--- parameters for data reading ...
Reading News from a CSV file
-
RedLineFred replied Nov 5, 2014Why not set a range limit in pips - say 35 pips, and then count the number of bars (say M15 bars) that stay within that range, where the range is measured as the highest high - lowest low looking back from the current bar. This would give a number ...
Choppy market index: any good ideas?
-
RedLineFred replied Nov 2, 2014Many EAs use dynamic lot sizing to do exactly what you want. You might need to contact the author of your "set & forget" EA and get him to modify it
Can an EA automatically enter your risk per trade?
-
RedLineFred replied Oct 30, 2014The issue is that you need to count down your orders and not count up, where you were using i++, FerruFX rightly identifies i--.
Order delete error 4108 (with 2 open orders)
-
RedLineFred replied Oct 27, 2014If you want people to help you will need to post your mq4 file. If you want to keep it out of the public domain then you need to find a friendly coder willing to help. If all else fails, PM me.
I will code your EAs and Indicators for no charge
-
RedLineFred replied Oct 27, 2014You will need to consider how you use this flag and when to reset it. While "OrderPlaced = TRUE;" the code will not place another trade. At some point this will need to be set to false, at which time the EA will again place orders. My suggestion was ...
I will code your EAs and Indicators for no charge
-
RedLineFred replied Oct 26, 2014One way could be to write a script that looks for your signal and records the outcome to a file. Have it run on your chart of choice and then look at the results in a spreadsheet. Plot a graph of the results and you shoudl be able to see which ...
Need to calculate probabilities for indicator signals