Forum

ObjectSetInteger(0, ObjName, OBJPROP_ALIGN, ALIGN_CENTER); ALIGN_LEFT , ALIGN_RIGHT Nothing has changed.

void ShowBS( string CodeName, int BarIndex) { datetime targetTime = iTime ( NULL , Period (), BarIndex); ObjectCreate ( 0 , CodeName, OBJ_TEXT , 1 , targetTime, 9 ); ObjectSetInteger ( 0 , CodeName, OBJPROP_COLOR , clrYellow ); ObjectSetInteger ( 0 , CodeName, OBJPROP_FONTSIZE , 8

MQL4 uses SetLevelValue, in MQL5 what command is used?

In MQL5 what command is used instead SetLevelValue(..)

Why compile error "IndicatorCounted()" ?

I just switched to MT5. #property indicator_chart_window #property indicator_buffers 0 #property indicator_plots 0 //+------------------------------------------------------------------+ //| Custom indicator iteration function |

What mean of ExtDep,ExtDev,ExtBack in Zigzag ?

In Zigzag indicator . What mean of ExtDepth, ExtDeviation ,ExtBackstep ? thank you

How to set color by RGB ?

example color ZBCol = Gray; How to set color by RGB (128,128,128) ? Thank you

Error "unknow ticket" is what number?

What is number code of "Unknow ticket" ? Thank you

How to get TimeDaylightSavings on server time ? Not local time.

TimeDaylightSavings () . It depends on the time settings of my computer(local time). How to get TimeDaylightSavings on server time ? Thank you

How to set GMT offset in CSV2FXT scripts .

I downloaded the Dukascopy tick data and then used CSV2FXT to convert it . If I want to run backtest by broker "A" with GMT+2 and European DST. How to set " FXT GMT Offset" , "FXT DST setting" , " CSV GMT Offset" , "CSV DST setting" ? Thank you

How to adjust GMT of historical data?

Get historical data TF-M1 (F2) from broker A to broker B . For convert M1 to another timeframe by script " PeriodConverter" in mtt4 . Broker A time zone is GMT+0 . Broker B time zone is GMT+2 . How to use script "PeriodConverter" to adjust GMT+2 too ? Thankyou