I'm trying to make data availbe to my strategy that I'm writing from an indicator. However the indicator creates a lists of rectangles and I want the strategy to read this list. I'm having issues exporting that list. Here's how it looks so far
[Description("The supply zones values and bounce count according to active rectangles")]
[Browsable(false)]
public List<IRectangle> SupplyZones //provides access to the supply list so that the strategy can use this list.
{
get { return supplyZones; }
}
Any help would be great.

Comment