Fro
Fro
gge
Friends

Add friends via their profile or user search and you will be able to see if they are online

Fro
Added topic Has anyone found/coded a 'Stop and Reverse single pivot' indicator (youtube vid incl. for more explanation)
I was wondering if anyone has seen the indicator used in the following youtube clip for MT4? https://www.youtube.com/watch?v=rv0-u_9FDTE watch from 2:21 -Tanks
Fro
Added topic Indicator for days of the week?
Hello, I was wondering if anybody has seen an indicator which highlights the beginning and end of each day of the week? maybe something similar to this https://www.mql5.com/en/code/7753 except instead of session the days of the week are marked Thanks
Fro
Registered at MQL5.community
Fro
Added topic trending vs trading
Hey guys Just wondering if anyone has any good ideas for detecting whether a pair is trending or trading, obviously there is no perfect solution. Just looking for ideas. I was thinking maybe an indicator that detects divergence between macd and
Fro
Added topic Closing order Logic???
Hello I have been using psar to trigger buys and sells, but Im having problems with the EA closing the order a second later, Im just wondering if anyone has any idea whats wrong with my coding below double PSAR_5M= iSAR
Fro
Added topic How to avoid Repainting?
Hello I'm wondering if anyone has a good solution for indicators that repaint? so far I have been using the following code to avoid it but I'm pretty sure that someone out there has probably figured out a better way to do it, double PSAR= iSAR
Fro
Added topic Point differences in currency pairs?
Hello im trying to make a stop loss/ trailing stop system for an EA that could be used on any currency pair , the problem is that a pip on one pair is worth more than on another pair (ie USDJPY pip is more than a AUDUSD). How do you get around this
Fro
Added topic Using iCustom with strings
Hello Im having a little trouble with the iCustom function, my code so far is as follows - string open_pair ; string pairs_names [ 2 ] = { "EUR" , "GBP" } ; open_pair = StringConcatenate ( " \" " , pairs_names [ 0 ] , pairs_names [ 1 ] , " \" " ) ;
Fro
Added topic String Concatenate problems?
Hello Im having a little trouble with the string concatenate function , my code so far is as follows - string open_pair ; string pairs_names [ 2 ] = { "EUR" , "GBP" } ; open_pair = StringConcatenate ( " \" " , pairs_names [ 0 ] , pairs_names [ 1 ]
Fro
Added topic Using Custom Indicators
Hello guys I am trying to create an EA using "Damiani volatmeter", but Im unsure at this point how to check its status. I assume i would use iCustom , but im not sure how to do that with an indicator like this one thanks
Fro
Added topic Really simple coding problem?
Hello would anyone care to advise me why this piece of code doesnt work? double MA=iMA(NULL,0,1,0,MODE_SMA,PRICE_CLOSE,0); double ST=iCustom(Symbol(),0,"SuperTrend",10,3,0); if (MA<ST) {
Fro
Added topic Preforming logic tests on other Currency Pairs
Hello I am wondering if it is possible to preform logic tests on currency pairs other than the one shown in the chart? For instance if you had an EA running on the EUR/USD, could you check if the EURGBP was above the 20MA, or possibly a custom
Fro
Added topic Help Detecting Changes in Custom Indicators
Hello Im trying to use the 'Slope Direction Line' indicator in an EA and Im not sure how to tell when the color of the line has changed. Im using the following code to access the indicator - d ouble SDL=iCustom(Symbol(),0,"Slope Direction