Announcement

Collapse
No announcement yet.

Question about a Backtesting Strategy

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Question about a Backtesting Strategy

    Can someone help me determine what this backtest is exactly testing and how to modifiy it.

    BTmovingaverage2.efs

    What moving average?
    How does it take profits?
    How can I adjust the MA?

    Thanks

    Adam

  • #2
    Adam

    What moving average?

    It uses a 10 period simple moving average based on the Close. The study is defined in the line
    var study = new MAStudy(10, 0, "Close", MAStudy.SIMPLE);
    which is at the very beginning of the script

    How does it take profits?

    It is a Stop and Reverse system

    How can I adjust the MA?

    Open the efs with the Editor and change the value of 10 in the line that defines the study (the same one I showed just above)
    Alex

    Comment


    • #3
      Thank you very much for your help.

      Comment

      Working...
      X