How to get data from an indicator with no buffers?

 

This indicator has no buffers and I'm not really sure how to extract the data i need (the pivots).

If anyone can point me in the right direction it would be greatly appreciated.

edit:I'm modifying the code to add a buffer, seems like the logical way to proceed.

Pivot_Points_Lines_v1.3 MT5
Pivot_Points_Lines_v1.3 MT5
  • www.mql5.com
Draws Pivot Points formulas
 
amillax:

This indicator has no buffers and I'm not really sure how to extract the data i need (the pivots).

If anyone can point me in the right direction it would be greatly appreciated.

edit:I'm modifying the code to add a buffer, seems like the logical way to proceed.

use ObjectName to get the data (Print) it be safe if its the correct data: Print("ObjectName: ",ObjectNameBLABLABLA);

 
Look for another indicator with buffers.

There are tons of similar indicator, some of them well coded with buffers and some not!

The way of checking Objects on chart can work as a workaround, but in this case, what I said will be the best option.
Reason: