#amibroker

  1. D

    can anyone explain/amplify this afl n the codes used in it? what is T, BHSDA, etc

    _SECTION_BEGIN("DND BuySell System"); //------------------------------------------------------------------------- SetChartOptions(0,chartShowArrows|chartShowDates); _N(Title = StrFormat(" Open %g, Hi %g, Lo %g, Close %g (%.1f%%)", O, H, L, C, SelectedValue( ROC( C, 1 ) ) )); T=23...
  2. R

    Need help adding a line of code in Amibroker

    Hi, I've written a simple set of buy, sell, short and cover rules. I've set a profit target of 4% for both long and short trades. In addition to this, I would like to also add a stop loss of 1.5% and want to exit the trade either at profit or at stop loss, whichever comes first. Can...
  3. T

    Before generating BUY or SELL signal how to check whether signal already generated or not in amibroker

    Hi, I am scanning a few list of stocks with amibroker. My AR(Auto repeat) scan interval is 1s. So every second amibroker scans the stocks. First time if conditions meet it generates the signal for a particular stock. Since my AR interval is 1s immediately it scans and again condition is...