Profit factor
One of the most vital statistics of any systematic trading strategy is the profit factor. The profit factor is how many dollars you make for each dollar you lose. A profit factor above 1 means your strategy is profitable. A profit factor below 1 means you should head back to the drawing board.
In this exercise, you will explore the profit factor in your strategy by creating an object called tstats that displays the trade statistics for your system. In general, trade statistics are generated by using the tradeStats() command.
Diese Übung ist Teil des Kurses
Financial Trading in R
Anleitung zur Übung
- Use
tradeStats()to create an object containing the trade statistics in your portfolio. Save this aststats. - Use the object
tstatsobject along with$andProfit.Factorto report the profit factor forSPY. Is your strategy profitable?
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Get the tradeStats for your portfolio
tstats <- tradeStats(Portfolios = ___)
# Print the profit factor
___