Amibroker For Dummies........a Beginner's Forum On How To Use Amibroker

will this thread serve its purpose?

  • yes

    Votes: 397 93.2%
  • no

    Votes: 29 6.8%

  • Total voters
    426
Re: Bollinger Band in Amibroker is displayed in separate window below

NSE, BSE, MCX, Yahoo, Google downloader : http://sourceforge.net/projects/shubhalabhadown/

NSE downloader : http://www.getbhavcopy.com/

Download and import to Amibroker, select the desired symbol to view the chart.
I have just downloaded and installed SUBHA DOWNLOADER and downloaded IEOD data. But nowhere I found the instruction or Help to how to import it in Amibroker. What Format files have to be added in Amibroker and in Database settings in Amibroker what needs to be done. i tried to import as default format but it resulted in error. Where can I get helpmon it.
 

amsin21

Well-Known Member
Re: Bollinger Band in Amibroker is displayed in separate window below

I have just downloaded and installed SUBHA DOWNLOADER and downloaded IEOD data. But nowhere I found the instruction or Help to how to import it in Amibroker. What Format files have to be added in Amibroker and in Database settings in Amibroker what needs to be done. i tried to import as default format but it resulted in error. Where can I get helpmon it.
Use the Converter.xlsm to convert the Subha CSV to Amibroker format. Then use the import wizard.

Out put format of Excel is : "ALUMINI-I,20140919,119.3,119.7,118.75,118.95,11709,5246" is the same as Getbhavcopy format.

All credits goes to optionwriter: http://www.traderji.com/end-day/91311-mcx-eod-downloader-working.html
 
Last edited:

amsin21

Well-Known Member
can anyone tell me why I get time as 2:29:59 etc. instead of 3:30pm etc. in my ami and way to correct that?
That is correct. 3:30pm is the next candle start time while 2:59:59 pm is the previous candle close time.
 
hello

sometimes the indicator i plot on amibroker and when i close amibroker and open it the next day the indicator plotted disappear and it reverts back to old settings !

how to save indicator settings ?

rgds
 
so here is the ATR trailing stop loss afl code , guys please share your views , 1 thing i am confused about it is that it doesnt get touched by candles at all , then how the stop loss will work ?

_SECTION_BEGIN("ATR Stop");
P = ParamField("Price field",3);
ATRP = Param( "ATR Period", 5, 1, 10, 1 );
factor = Param( "Multiple", 2, -10, 10, 0.25 );
stop = P + ATR(ATRP) * factor ;
Plot( stop, "ATR Stop", ParamColor( "Color", colorCycle ), ParamStyle("Style") );
_SECTION_END();

Toocool,

I guess the AFL is not correct in the sense that it is not a Trailing Stop but a variable Stop where the Stop level keep changing (upwards as well as downwards i.e., two-way) along with the change in price.

A trailing Stop should only trail only one-way (not two-way) that is in case of Longs- it should only trail upwards and in case of down move it should not trail downwards but the Stoploss should be hit.

Similarity, in case of Sorts - it should only trail downwards and in case of up move it should not trail upwards but the Stoploss should be hit.

Request the experts to modify the AFL to incorporate the changes required to change the variable Stop AFL to Trailing Stop AFL.

Thanx
 
Anyone can help me ... how to write afl that would open say 2 pane. I want to plot
1) say price first pane
2) macd second pane
3) another indicator like this..
 

Similar threads