- Search Crypto Craft
-
RedLineFred replied Jun 8, 2017I use a similar approach and here are a few ideas to consider. For me its all about risk, so i ensure i can handle the drawdowns. Look for a pair close to the all time low and use this level as a base, as the chances of dropping lower should be ...
Grid trading with very low leverage
-
RedLineFred replied Jun 7, 2017Please consider how MT4 carries out its back-testing. It must use historical bar data, but only stores the OHLC of each bar. It doesn't know how price moved within any M1 bar. It effectively makes up the tick moves as it doesn't have any other ...
Bengal Dream - scalper not work in back as in forward test
-
RedLineFred replied Aug 10, 2016any chance to provide that link you mention in the video?
Trade with 60
-
RedLineFred replied Jul 12, 2016A coin flip with an edge. Look at the results: average win = 1.75% Average loss = 1.3% total pips won over 2500 And you ask why is this successful? Suggest you spend a bit more time researching rather than trading. Best of luck.
Trade with 60
-
RedLineFred replied Jul 6, 2016if(previousOrders > getOrders(magic) ) { closeAll(); } if(previousOrders < getOrders(magic) ) { previousOrders = getOrders(magic); } int getOrders(int magic) { int totalTrades = 0; int i; int total_orders = OrdersTotal(); for (i = 0; i < ...
I will code your EAs and Indicators for no charge
-
RedLineFred replied Jul 5, 2016interesting and thanks for sharing
Cool and Free Chart App (can be extended)
-
RedLineFred replied Jul 5, 2016The Big C is a tad busy, but we should keep the dialogue moving, so in the interests of transparency, i should let you know that I assisted with the construction of this series of spreadsheets. If you want to bounce any ideas around or are having ...
Diversified Trend Trading – Excel Projects
-
RedLineFred replied Jul 5, 2016add a variable startLots = 1; // or whatever you want if(OpenOrders == 0) { LotSize = startLots ; } else { LotSize = startLots * OpenOrders; } this will give you a sequence of order with lot sizes, 1, 1, 2, 4, 8, 16 etc you already have a routine ...
I will code your EAs and Indicators for no charge
-
RedLineFred replied Jul 5, 2016seems to me you are over complicating things. not sure if this will work for you as i don't know what else your code does, but if you simply want to close all open and pending orders when one hits a TP, then why not base your logic on a count of the ...
I will code your EAs and Indicators for no charge
-
RedLineFred replied Jun 30, 2016The code doesn't contain an alert at present and as I'm not familiar with this indi, you will need to explain what/when the alert should occur.
I will code your EAs and Indicators for no charge
-
RedLineFred replied Jun 29, 2016try to google "trade copier"
I will code your EAs and Indicators for no charge
-
RedLineFred replied Jun 23, 2016depending on your broker, you may need to send an order with SL = 0 and then modify that order to set SL = Low[1] it is a two step process
I will code your EAs and Indicators for no charge
-
RedLineFred replied Jun 23, 2016//+----------------------------------------------------------------------------+ //| Create a line connecting 2 points. //+----------------------------------------------------------------------------+ string createLine(string argName, datetime ...
I will code your EAs and Indicators for no charge
-
RedLineFred replied Jun 21, 2016here you go. All compile error free, but have not been tested, so please check
SSSR_v3_EA Journal
-
RedLineFred replied Jun 12, 2016great idea and happy to help
Diversified Trend Trading – Excel Projects
-
RedLineFred replied Jun 2, 2016You need to ensure your code includes and sorts by Symbol() in its calculations, at the moment you are looking at all history across all currencies, hence your problem. The reason it works in backtest is that its only looking at a single pair and so ...
Problem with close all function
-
RedLineFred replied May 26, 2016Darren, When trading the daily chart do you still avoid entries during the Asian session? Or look for any breakout regardless of when it occurs? thx Fred
Trade with 60
-
RedLineFred replied May 19, 2016if you can set and forget your tomorrow trades based on the end of day data, then you can automate the process. Once the EA is done, time to trade? Zero... more time to paint.
Trading Dailies, 1HR a day?