Hello Forum, good day.
I have the following code that shows the MA of RSI in one window and RSI in another separate window:
double RSI = iRSI( NULL, 0, RSI_Period, RSI_Price, 1 ); double Get_MA_7_RSI( int shift ) { double data[]; ArrayResize( data, MA_RSI_Total ); for ( int count = MA_RSI_Total - 1; count >= 0; count-- ) { data[count] = iRSI( NULL, 0, MA_RSI_Period, RSI_Price, count + shift ); } return( iMAOnArray( data, MA_RSI_Total, MA_RSI_Period, 0, RSI_MA_Method, 0 ) ); }
I need them to be displayed in the same window, how can this be done? Your help will be much appreciated.
Best regards and thank you,
codeMolecules
You agree to website policy and terms of use
Allow the use of cookies to log in to the MQL5.com website.
Please enable the necessary setting in your browser, otherwise you will not be able to log in.
Hello Forum, good day.
I have the following code that shows the MA of RSI in one window and RSI in another separate window:
I need them to be displayed in the same window, how can this be done? Your help will be much appreciated.
Best regards and thank you,
codeMolecules