Forum

Enum degraded or spec changed with Build 540?

I made a simple test script. //+------------------------------------------------------------------+ //| testEnum2.mq5 | //+------------------------------------------------------------------+ #property script_show_inputs input ENUM_DAY_OF_WEEK

Enum degraded or spec changed with Build 324?

I made a simple test script. //+------------------------------------------------------------------+ //| testEnum.mq5 | //+------------------------------------------------------------------+ enum ENUM_TEST_CODE { CODE_ZERO, CODE_ONE, CODE_TWO

Missing characters in extended ASCII set.

On MT5 charts of my PC, some characters of extended ASCII set fonts are missing. I made a simple test indicator "testASCII.mq5", which draws all ASCII set characters (include extended ASCII set) and it's codes on label objects. And the result is: In this test, I use Wingdings font. Some characters

Some indicators don't work with Build 315

If you compile a indicator and if the compiler print out a warning like this: "No indicator plot defined for indicator" this indicator doesn't work with Build 315. The indicator is listed in Indicators List, but OnInit() function isn't called. Is this a new specification? I made a simple test

Out of memory problem with Build 313.

I made a simple test script. //+------------------------------------------------------------------+ //| testNullString.mq5 | //+------------------------------------------------------------------+

External Integer miscalculation; Is it a problem of compiler?

I made a simple test indicator. //+------------------------------------------------------------------+ //| testInput.mq5 | //+------------------------------------------------------------------+ #property indicator_chart_window //--- input int

Build 294 degrades compiler?

I made a simple test indicator . //+------------------------------------------------------------------+ //| testLoop.mq5 | //+------------------------------------------------------------------+ #property indicator_chart_window int OnInit () { return

Is SERIES_BARS_COUNT correct?

I made a simple test indicator for printing the number of bars . //+------------------------------------------------------------------+ //| testBars.mq5 | //+------------------------------------------------------------------+ #property description