Forum

indicators in Data Window, using python

Good day to all, I am wondering if there is a way to capture the indicator data (ie. buffers) from the data window using python? a function similar to CopyRates()

Symbol properties

In the Symbol Property window, I am wondering what does the < 1/2 > stand for, as shown in pic

BarsCalculated(3)

Hello everyone, I am using BarsCalculated(handle) in EA like so: double BolliBandLow ( int index) { if (!m_symbol.RefreshRates()) return (- 7 ); if ( BarsCalculated (handle)< 14 ){ return (- 7 );} double BB_low[ ]; ArraySetAsSeries (BB_low, true ); ResetLastError ();

Cannot Load custom Indicator 4802

Can Anyone Solve this mystery! when I Copy my .ex5 file into another Broker's Terminal\QBD0125HJF5248LZEEOO21542HJ75\MQL5\Expert I get the error 4802 cannot load custom indicator .... while at the same time when I run the same executable on the home Terminal it was debugged on It will run without

session_index

Hello MT4/5 Gurus I am wondering if someone would shed some light on the session_index parameter , Allows receiving time of beginning and end of the specified quoting sessions for a specified symbol and day of week. bool SymbolInfoSessionQuote( string name, // symbol

MQL5InfoInteger

Hello Mql5 Gurus would anyone have a link to where I would find how to deal with a code that uses MQL5InfoInteger function ? I couldn't find relative documentations on the website ( lol that doesn't mean they aren't any!) thank you

lack of documentation for: SYMBOL_MARGIN_STOPLIMIT

can anyone point out the documentation or an article making use of the following: SYMBOL_MARGIN_STOPLIMIT thank you

not all indicators appear in strategy tester

I came across an unusual situation: I put all the indicators I need in a class in a separate header file. When I run the strategy tester I am able to see 4 of them instead of 6! even though the EA is able to read their values at any candle ( ie handle is valid, copybuffer is valid , Indicator(0,1) =

bar candle size Error " array out of range

I cannot seem to be able to investigate the array out of range error in the following code sniplet : double LargestBarSize( NULL , 0 ) { MqlRates PriceInfo[]; ArraySetAsSeries (PriceInfo, true ); int Data = CopyRates ( NULL , 0 , 0 , 100 ,PriceInfo); double low[],high[]; ArraySetAsSeries (low

strategy tester error

I am wondering if someone can help me figure out this issue: the MQL5 function in SymbolInfo.mqh : Point() returns Point: 0.00001000 when I call it via the Comment (which is correct and as expected .....) and returns : Point :-1998362383 in the strategy tester !!! how can that be