Home › Forums › Trading System Mentor Course Community › AmiBroker Coding and AFL › Annotate a chart?
Anyone know how I could place a word above an arrow on a chart?
If you mean in Amibroker and the arrows for buy and sell then
for(b = FirstVisibleBar; b <= LastVisibleBar AND b < BarCount; b++) { if(Buy[b]) PlotText("n Buyn"+NumToStr(BuyPrice[b], 1.3), b, BuyPrice[b] * 0.9985, TextColor); else if(Sell[b]) PlotText("n Selln"+NumToStr(SellPrice[b], 1.3), b, SellPrice[b] * 0.9985, TextColor); }