Let’s say that I open the chart of some instruments but I just want to plot a range of dates, that is, I only want to work with the prices between February 1, 2020 to May 1, 2020. Is there a PRT11 menu for this? If not, would it be possible to make some indicator to do it?
Possible to do that with an indicator, the below code plot candlestick between 2 dates. Click “hide” on the price settings to disable the default candlesticks of the price chart too.
start = 20200201
end = 20200501
if date>=start and date<=end then
drawcandle(open,high,low,close)
endif
return