TradingView
allanster
16 sept. 2019 00:59

How To Auto Set Date Range 

Litecoin / United States DollarCoinbase

Description

Example how to automatically set the date range window to be backtested from X days or weeks ago to present. Additional options are also included to manually set the date range or to show entire range available.

Normally when you change chart period it changes the number of days being backtested, which means as you increase the chart period (for example from 5min to 15min), you also increase the number of days traded. So you can not compare apples to apples for which period would yield best performance for your strategy.

By incorporating this code with your own strategy's logic (replacing buy and sell), it will allow you to compare results of different period backtests over the same duration of time.

Date Range: ALL uses entire history.
Date Range: DAYS uses number you set in # Days or Weeks
Date Range: WEEKS uses number you set in # Days or Weeks
Date Range: MANUAL uses manual dates you set in From and To fields

Much gratitude to @pinechrix for suggesting this improvement to me, and to @Gesundheit for pointing me in the right direction on the original example I published previously. Thank you both!

NOTICE: This is an example script and not meant to be used as an actual strategy. By using this script or any portion thereof, you acknowledge that you have read and understood that this is for research purposes only and I am not responsible for any financial losses you may incur by using this script!

Notes de version

Added option to show on chart the date range selected.

Notes de version

Consolidated inputs for day, month, year.

Notes de version

Updated for Pine Script v5.
Commentaires
Marcopoloooo
Looks like it doesn't work anymore ...
allanster
@Marcopoloooo, thanks for your interest. I checked and this script appears to be working as intended. Please check the section in the script description above for how the Date Range settings are meant to be used.
GutenbergNunes
I LOVE YOU!
allanster
@GutenbergNunes, thanks for the kind words, appreciated.
cahtreber
Great work here Allanster. Thank you for sharing.
Want to make alerts on this. Is that possible? Not have such skills so wanted to ask
allanster
@cahtreber, thanks, the date logic will work the same in a study (alerts) script, but the example shown above is a strategy script, so alerts are not available in the script's present form. You would need to convert it.
robertocrypto
How come that in some strategies adding backtest script just doesnt work? For example in this strategy tradingview.com/script/AMxhpBej-BitMEX-pump-catcher-MACD/
allanster
@robertocrypto, not sure I understand your question. If by "adding backtest script" you mean merging my "How To Auto Set Date Range" script above with the script you linked, the input lines 14-21 and the function lines 24-33 of my script above would need to be added to the other script somewhere before it's strategy.X functions. Then the window() function would need to be incorporated into the logic of each of the strategy.X functions in that script.
robertocrypto
@allanster, Thank you, I'll try that.
Plus