
11-11-2005, 06:14 PM
|
 |
Administrator
|
|
Join Date: Sep 2005
Posts: 299
|
|
Quote:
|
Originally Posted by codersguru
Review lesson 11:
In MQL4:
MaxTradeClose[0] is the first item in the array MaxTradeClose.
MaxTradeClose[1] is th second item.
MaxTradeClose[2] is the third item. etc..
But in EasyLnaguage the Array starts with the index 1 so,
MaxTradeClose[1] is the first item in the array MaxTradeClose.
MaxTradeClose[2] is th second item.
MaxTradeClose[3] is the third item. etc..
So, what's your question?
|
This is the question:
MaxtradeClose=C;
|