writing to file

  1. V

    Amibroker writing to file function

    I am using writing to file function: if(fh) { if ( LastValue(Buy1) == True AND alreadyopenbuy1 == "" ) I want to add time limit to it: startTime = 091500; // start in HHMMSS format endTime1 = 152900; // end in HHMMSS format timeOK1 = tn >= startTime AND tn <= endTime1; I tried using...