View Single Post
  #1 (permalink)  
Old 01-22-2006, 04:37 AM
ycomp's Avatar
ycomp ycomp is offline
Member
 
Join Date: Jan 2006
Posts: 93
ycomp is on a distinguished road
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.
Reply With Quote