- Search Metals Mine
- 1,205 Results (1,204 Replies, 1 Comments)
-
BlueRain replied Jan 22, 2020Trading is easy, just that making money is hard.
trading is simple - trading is easy
-
BlueRain replied Jan 22, 2020MA cross EA is a simple one and you should be able to get from many community including below: url url this is a sample similar to your request: url
Free Coding to backtest your strategy
-
BlueRain replied Jan 22, 2020Check this out if this works. You will need to load BB indicator to main chart. To config, set your BB period, deviation, shift and appliedprice 0=closed ( default ) 1=open 2=High 3=Low ... Update 1: Minor updated - period is now changed to readable ...
Bollinger Band Concept
-
BlueRain replied Jan 20, 2020My take is to go long. there are just too many at this point. Currently, price is at Fib 61.8 level, and it is on longer term trend support line as well as bouncing from lower ATR band. In addition, when ever RSI is bounce off from 25, there will be ...
EURUSD only
-
BlueRain replied Jan 15, 2020you will have to make certain variable to keep track of your current profit /TP/SL and provide condition if current profit/SL/PL met, don't open new position any more.
I will code your EAs and Indicators for no charge
-
BlueRain replied Jan 7, 2020managing risk is EVERYTHING Return is EVERYTHING !!! You are talking two side of same coin. I don't care which side is better or worse. I want No risk with High return if there is such thing. Just show me how you are making your money.. Once ...
100% Return, 97% Wins- What if the Holy Grail exists?
-
BlueRain replied Jan 7, 2020I agree that this is very impressive result if this is coming from true account & strategy. As I was in same boat - that spent few yrs of loss and began to turn around recently - I am open to your suggestion. I believe riding on the trending wave is ...
100% Return, 97% Wins- What if the Holy Grail exists?
-
BlueRain replied Jan 5, 2020This may work for you. There are many. url Specially, #5 TrailingStop.mq4 seems simple and good.
I will code your EAs and Indicators for no charge
-
BlueRain replied Jan 1, 2020Regarding HP indicator, You can open source code and you will find HP indicator is based on Hodrick-Prescott Filter - this is explained in this link to url it is very complex mathematical calculation that says "It is used to obtain a ...
Help Please with Indicator Alert Code
-
BlueRain replied Jan 1, 2020[quote=penuelophir;12683035]I am looking at the HP DIFF Alert indicator and I am thinking Does it repaint?[/qu Any indicator that checks "current bar" will repaint as current bar might change its value at any time and bar is not closed. HP is kind ...
Help Please with Indicator Alert Code
-
BlueRain replied Jan 1, 2020This is Utility Indicator with Perf % for each and whole position to show up on chart window.
Help Please with Indicator Alert Code
-
BlueRain replied Dec 31, 2019To match with HP, I have fixed HP_Diff_Alerts indicator by shifting 1 bar to left //uptrend UpTrend[x+1] = 1; DownTrend[x+1] = -1; UpTrend[x+1] = -1; DownTrend[x+1] = 1;
Help Please with Indicator Alert Code
-
BlueRain replied Dec 29, 2019Can you try this one and let me know? I have moved arrow handling block to its own block. It seems to be working but if you find any issue, please let me know.
Help Please with Indicator Alert Code
-
BlueRain replied Dec 29, 2019Found a minor bug - and fixed. Try a new one. this part is rolled back to original for(int n=0;n<nobs;n++) xn[n]=Close[n]; HPF(nobs,lambda,xn,hpf); 2nd Bug fix: some arrow was redrawn as it was trying to draw from last point. fixed by completely go ...
Help Please with Indicator Alert Code
-
BlueRain replied Dec 29, 2019Updae 2: Found some bug.. fixed now. Try new attached HP. Update: This is HP.mq4 with added features as requested by Ray. //+------------------------------------------------------------------+ //| HP.mq4 | //| Ver: V2 | //| Date: 12/29/2019 | //| ...
Help Please with Indicator Alert Code
-
BlueRain replied Dec 29, 2019Try this one which works as add-on. This indicator requires original HalfTrend3.mq4. You don't have to load HalfTrend3 to main chart as long as file is in the indicator folder path. Basically, this is filtered version of which will call HalfTrend3 ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Dec 29, 2019That histogram is called "Filtered" Let me take a look at this. I will try to finish convert this "filtered" in 2 days.
I will code your EAs and Indicators for no charge
-
BlueRain replied Dec 29, 2019Not sure exactly what kind of histogram you want. Try this if this is what you want. Indicator has already option to display histogram. Just changed this: From #property indicator_chart_window to #property indicator_separate_window You will have to ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Dec 13, 2019I agree that HP and TSR has similar approach... using some kind of filter to smooth out MAs and provide trend changes. Where TSR is using ZigZag style to show Up/Down Peaks and HP is using more of middle line. TSR stands for Trend/Support/Resistance ...
Help Please with Indicator Alert Code