How to code data from one indicator as source for second indicator

 

I want to know how I can write code in my EA where I use the data delivered by one indicator (iWPR) to act as the data source for another indicator (iMA).

Can anyone please assist? Will be very grateful!

 

Write an indicator and store the values from the WPR in a buffer. Then use iMAOnArray on that buffer.

Your EA can then retrieve the values by an iCustom call to the new indicator.

 
Keith Watford:

Write an indicator and store the values from the WPR in a buffer. Then use iMAOnArray on that buffer.

Your EA can then retrieve the values by an iCustom call to the new indicator.

Thank you very much for that advice!

Reason: