Can I get more buffers?

 

I want to combine a number of indicators into one indicator but they all use buffers, is it possible to get more that 8 IndicatorBuffers or is that the absolute limit?


Thanks, steve

 

You can create and manually manage as many buffers as you like.

However, there is a hard limit of 8 indicator index buffers for drawing.

It is possible to draw additional lines that look like indicator lines using ObjectCreate().

 
phy:

You can create and manually manage as many buffers as you like.

However, there is a hard limit of 8 indicator index buffers for drawing.

It is possible to draw additional lines that look like indicator lines using ObjectCreate().

Hi Phy,


Thanks for your reply.

So the non-drawing buffers you are referring to above, are they just the standard arrays or are there other buffers?


Regards, Steve

 

Standard array "buffers".

double bufferName[];

you'll need to manage it manually to mimic an Index buffer. Index buffers get special automatic treatment (in addition to their values being available to tine index drawing function).

Reason: