Search results

  1. C

    Help need debugging simple Amibroker AFL code

    Thank you all for your replies. @GeorgeClueney: Putting the code inside the If condition works! Although there were other discrepencies in array access which I would like to have cleared up but that would be more out of curiosity than necessity. Meanwhile, this works as an acceptable...
  2. C

    Help need debugging simple Amibroker AFL code

    This is programming language for technical analysis sofware Amibroker (now I realize I forgot to mention that in thread title :(). In Amibroker, the symbol/ticker quotes are in form of arrays like Close, High, Open etc. They are all of same size which is given by system variable BarCount. So...
  3. C

    Help need debugging simple Amibroker AFL code

    Hi, Can anyone help me debug following code. SetBarsRequired( sbrAll, sbrAll ); printf("BarCount is %f\n", BarCount); printf("Close[Barcount-1] is %f\n", Close[BarCount-1]); printf("Close[0] is %f\n", Close[0]); printf("Close[20] is %f\n", Close[20]); printf("Close[200] is %f\n"...
Back
Top