Strategy template V1 by rubenter
By rubenter
Performance Metrics
- Author: rubenter
- Symbol: INDEX:BTCUSD
- Timeframe: 1 hour
- Net P&L: −0.63 USD (−0.01%)
- Win Rate: 33.5%
- Profit Factor: 0.831
- Max Drawdown: 0.81 USD (0.02%)
- Total Trades: 433
Description
Strategy Template v1 This strategy script is a template with different exit options, entry filters, and conditions already coded in.This script is heavily tested to make sure no repainting or misfires are happening.All that's left to do is put your own entry conditions into the script, and you can start testing/trading. // explanationstreak loss control:This function allows you to stop the strategy for a x amount of time, if the strategy has a x amount of losing trades in a row.Max Drawdown:This function will make the strategy stop trading when the Max drawdown is hit.Long and Short Positions:Allows you to only trade Long or Short positions with an easy toggle.Allowed hours:Allows you to choose during which hours of the day you want your strategy to be allowed to trade.Stoploss/trail percentage, ATR or swing:With this option, you can choose what kind of stop loss or trailing stop you want for your strategy. You can further adjust these settings below depending on what option you pick. Choose if you want your stop to be trailing or static.Stop loss/trailed %/ATR:Further adjust your settings with the amount of distance the stoploss trails or, when static, starts from trade open. With the option closed bar, the trade only exits when the bar closes, breaking the stop/trail. With intra bar, the trade exits as soon as it touches the stop/trail.Stop Loss/Trail swing exit:Based on the recent swing high/low.Same functions as Stop loss/trailed %/ATR.Is used as the default static stoploss. // This is a smaller version of a more complicated strategy template.// other versions also include: partial exits, leverage trading, and better risk management. // let me know if there is intressed in the other versions.