Forum

Indicator frame.

Like the TDI, is there a way of adding a combined indicator to the lower window in a single frame as an ea. input int InpMAPeriod = 5 ; input int InpRSIPeriod = 14 ; RSIHandle, MaHandle, EnvHandle , RSIBuffer[], MaBuffer[] ; ArraySetAsSeries (MA, true );

ArraySetAsSeries not working

how does the rsi indicator appear in the lower window of ea ? input int InpPeriodRSI= 14 ; // Period //--- indicator buffers double ExtRSIBuffer[]; double ExtPosBuffer[]; ArraySetAsSeries (RSI, true ); RSIHandle=iRSi( Symbol , PRICE_CLOSE ); Improperly formatted code edited by moderator

Get Indicator.

hello, In MT5 , the complete Basic Moving Average Indicator cannot be found in the Indicator Examples. Any reason for that

Help with FastMaArray / SlowMaArray

In comparing MA, if(FastMaArray[0]>SlowMaArray[0] && FastMaArray[1]<(SlowMaArray[1]), please ,what will cause -'0 some expected operator

MQL5 terms

In MQL5 , is there a means of calculating 'Maximum Total Drawdown, Maximum Diffusion, Maximum Total Withdraw , Daily Target Percent

get the distance of candles

drawing horizontal line on chart if (MA1>M2) && High[1] > Low[4]; from High[1] to Low[4]; OBJ_HLINE(High[], LOW[]); on pervious day. Print(High[1] to Low[4], ""); Pls help to get horizontal line of previous day on chart