Forum

parameter conversion not allowed

How can I solve this error I get when I try to compilte my code containing: the error is for this line: (error says: parameter conversion not allowed) int handle = FindWindowA(i, log ); int FindIfDirOpened() { string log = "logs" ; string i; int handle = FindWindowA(i, log );

need a newsfilter for myEA

Hi Does anyone know of a open source news filter indicator that is easy to use and call it ( using iCustom function)? it should be able to consider high impact / medium impact news and also those Speak news. I know of FFCal but it is too confusing, and I couldn't find the right way of calling it

'TimeGMT' - override system function FFCal.mq4

I ma trying to use FFCal.mq4 and change one setting and then recompile it but when I try to compile it I get this error: 'TimeGMT' - override system function FFCal.mq4 1363 10 1. what can I do to solve this? 2. How did the creators compile this indicator without getting this error

how to calculate MA on RSI?

I want to calculate MA of RSI . SO far I could come this far with this code: double rsi[]; for ( int i= 0 ; i<= 100 ; i++) { rsi[i]= iRSI ( Symbol (), 0 , 14 , PRICE_OPEN ,i); } ArraySetAsSeries (rsi, true ); double ma=iMAOnArray(rsi, 0 , 5 , 0 , MODE_EMA , 1 ); Print (

how to tell mt4 to update its log file when we want / or at least faster?

how to tell mt4 to update its log file when we want / or at least faster? I tested something: when you have an EA that prints something in experts tab, the mt4 does not write that to the log file immediately, even I waited for 5 minutes but still not! but when I closed mt4 it wrote those logs to

how can I calculate a 20 day price channel in mt4?

how can I calculate a 20 day price channel in mt4? I need it for my calculations, how can I find the current value of the upper line of a price channel for a given bar? I couldnt find any built in functions in mt4. Do you know any

what is the nearest channel to keltner channels which is built in into mt4 platform?

what is the nearest channel to keltner channels which is built in into mt4 platform? Donchian channel ? are there any keltner channels built into this mt4

I need to have EMA for my calculations in mql4

I need to have EMA for my calculations in mql4, but the mt4 only has MA=moving average and not the exponential moving average!!! I need to be able to calculate the EMA for any given bar in the current chart in mql4 language. Does anyone know of any solution? ( need to calculate based on closed price

price channels in mt4

How can I draw price channels in mt4? I want to use price channels. Is there any indicator there? I couldn't find. Can someone help me

iBands function for a specific Bar

I want to get the result of the iBands() indicator function on the bar which I like, for example the third bar from the recent bars on the chart that my EA is attached. How can I get that? How can I accomplish that? the following: just returns the latest number of the iBands for the latest price on