For the point you want to add, you will need its position on the y axis yValueand the date it was placed on the x axis xValue(formatted as a single date serial number ). Then the following should work:
candle(...); %
hold on; %
plot(xValue,yValue,'r.'); %
If you want to increase the red dot, you can replace the last line with one of the following:
plot(xValue,yValue,'r.','MarkerSize',20);
plot(xValue,yValue,'ro','MarkerFaceColor','r');
source
share