DE
Topics
18 Aug 2016, 13:15
2430
6
25 Apr 2014, 20:31
2730
2
11 Apr 2014, 13:09
2658
3
Replies
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
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