Forum

Panel Refresh on new Bar

Hi guys I have a Panel on My EA, With Account Balance and other EA info, currently the Panel only updates when you switch timeframes, is there a way to refresh the Panel data on every bar or every tick? the panel is created with and include .mqh

Need Help With RSI and EMA Expert advisor

Hi I am new to the MQL5 Coding scene and trying to learn as i go along. i am looking for some help In indicator 1 i have the following: RSI EMA levels of the RSI are set to 70 and 30 i want to create an alert once the moving average goes above the 70 Level of the RSI and a second alert once the line

Help to Get Current Tick RSI value

Hi Guys can you please help i am trying to find current tick value on the RSI Here is my code so far: int RSiHandle; RSiHandle = iRSI ( _Symbol , PERIOD_M1 , 14 , PRICE_CLOSE ); double rsi [ 2 ]; CopyBuffer (RSiHandle, 0 , 1 , 2 ,rsi); double RSICurrent =(rsi[ 0 ]); double RSIPrevious =(rsi [ 1 ]);