Replies

deejbee
14 Apr 2017, 13:28

How does this bot handle market reversal?  I did a quick backtest and it blew the account eventually, like martingale always does.  

Does this bot attempt anything different to recognise that situation?


@deejbee

deejbee
10 Apr 2014, 11:05

Hi, I came across the same issue after trying to debug.  The solution is quite simple.

In your bot wrapper, you need to set/copy each of the parameter values in the base class using values from the bot wrapper.

         protected override void OnStart()
         {
             // Put your initialization logic here

             base.MAType = this.MAType; //do the same for each parameter
             base.OnStart();
         }

 

Hope that helps.  


@deejbee