|
my first EA, simple question
Hi,
simple question, but it is stopping me from getting any further.
why doesn't the High value I output by runing this in the strategy tester match up with the one on the chart in the data window?
I am looking at the correct chart (I click the chart from the strategy tester)
the EA:
//+------------------------------------------------------------------+
//| expert start function |
//+------------------------------------------------------------------+
int start()
{
Print(iHigh(NULL,0,0));
return(0);
}
//+------------------------------------------------------------------+
I did this test because I couldn't match up the results of iCustom with the chart and was trying to dig backwards to see if I could even get the correct High price, which it seems I can't.
|