hey everyone, I'm currently using a 15 min chart and the furthest that I can go in a 15 min bar chart is 6 months back. I try accessing the furthest close price on my chart's AggregationPeriod with the code below but had no luck. Any suggestions in what I'm missing 
declare lower;
input symbol = "NQ";
def agg = (AggregationPeriod.MONTH)*6;
plot data = close(period = agg);
declare lower;
input symbol = "NQ";
def agg = (AggregationPeriod.MONTH)*6;
plot data = close(period = agg);