Recent content by mikelight

  1. M

    Is backtesting simply simulated trades on historic data?

    Simple backtesting is something like this: double[] SimpleBackTest(double[] ask, double[] bid, double[] signal) { double[] equity = new double[signal.Length]; double curentPoss = 0, curentBallance = 0, curentEquity = 0; for (int i = 0; i <...
  2. M

    What books do you recommend

    Two really useful books:
Back
Top