coolaid
coolaid
coolaid
Added topic period converter optimized does not work. Stuck on 'waiting for Update'
The converted time frame(in this case m4) is stuck on 'waiting for update' for any period you input for. 'Offline chart' is selected as well so this ins't the problem. //+------------------------------------------------------------------+
coolaid
Added topic Indicator no longer working? Expert 'Period_Converter_Opt' is not custom indicator and will be removed
Keeps removing itself upon attaching to live chart in all terminals
coolaid
Added topic How could I wrtie zigzag patterns based from fractal data?
If I have all the high and low fractals how could I calculate which fractals connect in accordance to the parameters of ExtDepth, ExtDeviation, and ExtBackStep of zigzag? From current bar to last bar because I only need first couple zigzag lines, not
coolaid
Added topic What happens in mt4 at market close/open when open time for last bar before close is the same time as open for first bar after market open?
On time frames like hour 4 the last open bar time is 16:00 right before market closes at 17:00. Then when it reopens the first bar starts at 16:00 again. On m1 timeframe chart says market closed at 17:00 and reopened at 17:00. Are these bars cut off
coolaid
Added topic What is wrong with bars in m1 history?
If you run the following you get back a time that is not on par with hour timeframe . int n=iBarShift( NULL , PERIOD_M1 ,iTime( NULL , PERIOD_H1 , 2 ))- 60 ; Print (iTime( NULL , PERIOD_M1 ,n)); //Returned value equals something like 23:03 Also in
coolaid
Added topic How does zigzag.mql4 work exactly?
I need to obtain the last few peak and low values of the zigzag buffer for time frames not pre programmed into mt4 all in a single EA. I've read the source and a few articles on the zigzag implementation but am still dumbfounded. Does any one know
coolaid
Added topic Good way to collect OHLC data for 'exotic' timeframes inside single EA?
I'm having trouble with my current EA. I need to collect OHLC for time frames not preprogrammed in mql4. I start at first m1 bar in history and I get the time of the first opening minute bar where day of month, day of week and time of day = 0. From
coolaid
Added topic I want to make this clear. You can't call an indicator with a non-standard timeframe in stategy tester and on live chart?
Regardless of what time frame I'm running an EA on I want to be able to see indicators with different time frames (2,3,4,10,20,etc). The documentation seems to think I just want to view a value while on attached to non standard time frame. I want to
coolaid
Added topic How come I get an error 4202(OBJECT DOES NOT EXIST) only in strategy tester?
              string name;          datetime t= iTime ( NULL , 1 , 0 );        double o= iOpen ( NULL , 1 , 0 );
coolaid
Registered at MQL5.community
coolaid
Added topic How to deal with mql4 taking previous bars off the chart? [solved]
Is there any way to go beyond the limit of ' Max bars on chart' option? SOLVED
coolaid
Added topic How do you scroll through individual bars during a strategy test?
I saw it somewhere but can't dig it up. Don't even know how to describe it. In strategy tester you can move through the preceding bars (or ticks?) instead of hitting the pause button every other second
coolaid
Added topic How would I find the open price of certain bars of an indicator with the icustom function?
The indicator is https://www.mql5.com/en/code/10928 and the certain bars are the ones with arrows
coolaid
Added topic How come the second I subscribe to a signal it immediatly opens orders?
Does this differ amongst different signals because the is the second signal that has done that. I thought it just copies trades as they happen on the provider's terminal
coolaid
Added topic How do I get values from different Indicators through the iCustom function.
I'm trying to get a values from different arrays in the same indicator but I already have the icustom getting values from a different indicator. I need them both