backtesting balance after roundtrip
#4
Quote:if(portfolioValueChange === (0.98 * portfolioValueFromBeforeLongPosition) { // < == Funny i know, but you get the idea XD
this.advice('short');
}

Well the idea is that you want to have a stop that if you lose 2% of your money you want out. Do you really need the precise portfolio information to determine this? If when you buy the price is 100, you can know roughly the same by simply watching whether the price goes below 98 (assuming you got a good execution price).

---------

Though if you want to use portfolio values, you can do it but you need to change some Gekko code around:

As you have figured out Gekko has a concept of events that are broadcasted whenever things happen. The portfolioValueChange is an event that gets broadcasted to all plugins that are interested in it ( https://gekko.wizb.it/docs/internals/eve...ange-event ).

The problem is now that your strategy is wrapped inside a plugin called the tradingAdvisor, as long as this plugin is not listening to the portfolioValueChange event it will be hard to get this data inside your strategy. The code is currently split up like this:

Code:
[ gekko stream, which has all events ] => [ tradingAdvisor plugin ] => [baseTradingMethod] => [your strategy]

So if we want the event to show up in your strategy we need to relay it a few times:

- in the tradingAdvisor subscribe to the event, just like this one: https://github.com/askmike/gekko/blob/de...#L106-L108
- in the baseTradingMethod relay the event, just like here (but skip these if checks): https://github.com/askmike/gekko/blob/de...#L206-L219
- add a new function to your strategy to handle the event.
  Reply


Messages In This Thread
backtesting balance after roundtrip - by slav - 10-14-2018, 05:36 PM
RE: backtesting balance after roundtrip - by slav - 10-22-2018, 11:50 AM
RE: backtesting balance after roundtrip - by askmike - 10-23-2018, 06:49 AM

Forum Jump:


Users browsing this thread: