howdy all,
im trying to create a script for the DAILY chart that shows a dot/arrow above candles where the High or Low = OPEN. (i prefer a dot to display vs arrow)
input period= aggregationPeriod.day;
input showarrows = yes;
def open= open (period = aggregationPeriod.DAY);
def high = open(period = aggregationPeriod.DAY);
def low = open(period = aggregationPeriod.DAY);
plot arrows = high == open (period = aggregationPeriod.DAY);
im trying to create a script for the DAILY chart that shows a dot/arrow above candles where the High or Low = OPEN. (i prefer a dot to display vs arrow)
input period= aggregationPeriod.day;
input showarrows = yes;
def open= open (period = aggregationPeriod.DAY);
def high = open(period = aggregationPeriod.DAY);
def low = open(period = aggregationPeriod.DAY);
plot arrows = high == open (period = aggregationPeriod.DAY);