Quote:
Originally Posted by webjeff
newbii,
I'm learning the MetaTrader script language too, its REALLY easy. I don't have any links, I have been looking into other scripts & looking into their documentation. Do you have any specific questions, I should be able to answer them. Its a very simplistic language, just figure out how to draw lines for charts first (Index Buffers), then look at their functions for trading (SelectOrder, PlaceOrder, etc). Even when I download a "complex" EA's I see it's usually nothing more than 100 different conditions and a math equation...
Jeff.
|
Hi Jeff,
Actually I was just having trouble with the whole idea of bars. Now that I have that down, everything makes a lot more sense

.
One question, though:
I have a function like this:
int func( double& arr[] )
{
return 0;
}
But when I try to call it via:
func( Close );
The compiler yells at me

(says something about a type mismatch even though the docs say Close is a double array). Could you help

?
Thanks