Registered User Joined: 7/19/2010 Posts: 23
|
Please see line 7 below. I can not see the correct name for volume in your
ref. for array storage in my own class?
'********************************************************************
1 For x1 = 0 To (price.Bar.count - 1)
2 y_datevalue(x1) = price.Bar.datevalue(x1)
3 y_value(x1) = price.Bar.value(x1)
4 y_open(x1) = price.Bar.openvalue(x1)
5 y_high(x1) = price.Bar.highvalue(x1)
6 y_low(x1) = price.Bar.lowvalue(x1)
7 y_volume(x1) = price.bar.volume(x1) <<<<<<<<<<<<<<<<<
8 Next x1
'*****************************************************************
|

 Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Please try:
Volume.Line()
-Bruce Personal Criteria Formulas TC2000 Support Articles
|