- Search Forex Factory
- 168 Results (3 Threads , 165 Replies )
- dietcoke replied May 19, 2020
Yes, the text was hard coded and i never modified it to use the actual variable. It's not a huge deal as the calculation is correct but if I do modify this in future, I'll change that. To be honest, there is really no reason to change the rsi values ...
Roadmap - A Way To Read Markets
- dietcoke replied May 18, 2020
It doesn't. However...... The figure is rounded to 1 Decimal It only refreshes every minute by default(you can change the refresh period as in image). In fast markets, the current value could diverge. The monthly RSI is not enabled by default so if ...
Roadmap - A Way To Read Markets
- dietcoke replied May 18, 2020
Hi Laura, I've been trying your system out and while its probably not for me, I did notice that the 2 RSI indicators were a bit of a performance lag on my system so I've tweaked the composite RSI and have written my own trendstrength version. I've ...
Roadmap - A Way To Read Markets
- dietcoke replied Apr 28, 2020
This is my solution. The list of pairs is iterated in an onTimer event and a newbar check is done for each pair in a pre-built symbol_array. The last checked new bar for any pair/timeframe combination is also saved as a globalvariable which allows ...
iTime Issues
- dietcoke replied Feb 17, 2020
Go back to the developer and get them to add some debug logging that you can turn on as and when required. You haven't said exactly how you tell the EA what trades to place but is it possible that human error in setting the criteria is at play?
How do I backtest a semi-automated EA?
- dietcoke replied Aug 6, 2019
No. I use the colour to tell me what TF the line was drawn on. As I always use the same colours, I don't need a label Yes, you are right. Try this one.
Drawing horizontal line on only one timeframe
- dietcoke replied Aug 6, 2019
put both files in scripts
Drawing horizontal line on only one timeframe
- dietcoke replied Aug 5, 2019
Try this script. place both files in your mql\scripts folder. to use drag the script onto the chart where you want the line to be and a line will be drawn Each time frame has its own colour and any line will appear on the current timeframe and the ...
Drawing horizontal line on only one timeframe
- dietcoke replied Aug 2, 2019
M5 is the trading period H4 is the reference period The system resets at the start of each H4 bar. Trades are taken off M5 bars that made a new H4 Hi or Lo. The end result is that you can have no more than one open long and one open short per H4 bar
Systematic Trend Trading
- dietcoke replied Aug 1, 2019
What i'm testing here is 1) selling the low of every H4 high that happens 2) buying the high of every H4 Low that happens It's seriously extreme. For sells, I set a pending 1* the spread below the low of the H4 high and the stop is 2* spread above ...
Systematic Trend Trading
- dietcoke replied Aug 1, 2019
One of the best threads I've read Mr. 60 It's been a bit of an eye-opener I modified one of my EA's to just take your kind of entries. I've just been playing with M5/H4, to generate trades to troubleshoot issues. No exit written yet. I'm not ...
Systematic Trend Trading
- dietcoke replied Feb 26, 2018
StopLossCoef = 0.53; StopLossATR = 95; Its just using 53% of a 95 period ATR to calculate the stop in pips. The coefficient determines how many atrs the stop will be. I'm not sure the ATR is variable enough to make huge difference to the outcome ...
EURUSD only
- dietcoke replied Dec 13, 2017
long chartID; int TryAgain=1; string name, chartSymbol=""; double ProfitLockNextJump=ProfitLockAt*ProfitJump; double ProfitBELockAt=ProfitLockAt*ProfitBE; double ProfitLocked=0; double CurrentProfit=0; double MaxProfit=0; double ...
Help editing variables in mql4
- dietcoke replied Dec 12, 2017
You cannot change input variable values in the code. If you need to modify them in running, create them as extern.
Help editing variables in mql4
- dietcoke replied Nov 29, 2017
Alex, Cant do charts right now because I'm at work but... I tried analysing DXY over the weekend. I concluded that on the weekly, the index was sitting right at a demand zone and the most likely scenario was an initial dip into that zone around 92.5 ...
Price action trading - Trade like the pros!
- dietcoke replied Nov 16, 2017
Thanks for this thread Alex. I've been lurking for a while and trying to get an understanding of the concepts here which are deceptively simple at their root but less so in the heat of battle. I'm thinking the sellers below the H&S neck have been ...
Price action trading - Trade like the pros!