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
Is there anyone who provides Amibroker training right from beginning , I have got a hang on how to Use Indicators etc but creating database , Adding AFLs , EOD data etc seems to be a bit of confusion. I Dont mind paying for 3-4 hrs of basic training for Amibroker.
 

manishchan

Well-Known Member
Is there anyone who provides Amibroker training right from beginning , I have got a hang on how to Use Indicators etc but creating database , Adding AFLs , EOD data etc seems to be a bit of confusion. I Dont mind paying for 3-4 hrs of basic training for Amibroker.

If you are a self learner.. then here is the Ami Guide..

h t t p : / / w w w . amibroker.com/bin/UsersGuide . pdf (remove spaces)
 
Got data feed from RTDS ( If there is a better data vendor do suggest me one) , which did database creation etc for the moment and all looks good , exploring AFLs and how to create ones ( long way to go for now).

Wanted to check is there a way i can get see through candles , cos the colors of candles are solid and EMA crossovers are not visible behind the candle. Can it be done ? Tried searching but can't find one . Looking forward to your suggestions.
 

a1b1trader

Well-Known Member
Got data feed from RTDS ( If there is a better data vendor do suggest me one) , which did database creation etc for the moment and all looks good , exploring AFLs and how to create ones ( long way to go for now).

Wanted to check is there a way i can get see through candles , cos the colors of candles are solid and EMA crossovers are not visible behind the candle. Can it be done ? Tried searching but can't find one . Looking forward to your suggestions.
Hi
If you want to see crossovers etc, then better use bars instead of candles.
Otherwise you can use hollow candles as well, but I never created one for myself.
 

trash

Well-Known Member
Wanted to check is there a way i can get see through candles , cos the colors of candles are solid and EMA crossovers are not visible behind the candle. Can it be done ? Tried searching but can't find one . Looking forward to your suggestions.
Plot has z-order shift option. So like an onion you have multiple layers. So any plot can be put on top of the other one via that z-order shift.
 
dear sir,

my requirement is below



BUY CONDITION: ALL BUY SIGNAL ONLY WILL TAKE HIGH+1 OF THE SIGNAL CANDLE .


SELL CONDITION: ALL SELL SIGNAL ONLY WILL TAKE LOW-1 OF THE SIGNAL CANDLE.

PLEASE SEE THE SCREEN SHOT FOR YOUR REF

This image has been resized. Click this bar to view the full image. The original image is sized 1304x601.


http://imageshack.com/a/img838/3879/xmn2.jpg
--------------------------------------------------------------------------

PLEASE USE THIS AFL----------




_SECTION_BEGIN("Price");
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() );
_SECTION_END();

_SECTION_BEGIN("Advanced Trailstop System");



mult=Param("multi", 2.0, 0.1, 10, 0.05);
Aper=Param("ATR period", 7, 2, 100, 1 );
atrvalue=(mult*ATR(aper));

Bs[0]=0;//=L;
L[0]=0;
C[0]=0;

for( i = 9; i < BarCount; i++ )
{
if ( L[ i ] > L[ i - 1 ] AND L[ i ] > L[ i - 2 ] AND L[ i ] > L[ i - 3 ] AND L[ i ] > L[ i - 4 ] AND
L[ i ] > L[ i - 5 ] AND L[ i ] > L[ i - 6 ] AND L[ i ] > L[ i - 7 ] AND L[ i ] > L[ i - 8 ] AND
L[ i ] > L[ i - 9 ] AND C[ i ] > bs[ i - 1 ])
{
bs[ i ] = L[ i ] - ATRvalue[ i ] ;

}
else
{
if ( H[ i ] < H[ i - 1 ] AND H[ i ] < H[ i - 2 ] AND H[ i ] < H[ i - 3 ] AND H[ i ] < H[ i - 4 ] AND
H[ i ] < H[ i - 5 ] AND H[ i ] < H[ i - 6 ] AND H[ i ] < H[ i - 7 ] AND H[ i ] < H[ i - 8 ] AND
H[ i ] < H[ i - 9 ] AND C[ i ] < bs[ i - 1 ] )
{
bs[ i ] = H[ i ] + ATRvalue[ i ];

}
else
{
bs[ i ] = bs[ i - 1];
} }}

//================================================== ==
Mycolor=IIf(C>bs,colorLime,colorRed);
bcolor=IIf(C>bs,colorBlue,colorBlue);
//PlotOHLC( Open, High, Low, Close, "", Mycolor, styleBar| styleThick );
Plot(bs,"ATS",bcolor,1|styleThick);
Buy=Cover=Cross(C,bs);
Sell=Short=Cross(bs,C);
shape=Buy*shapeUpArrow + Sell*shapeDownArrow;
PlotShapes(shapeUpArrow*Buy, colorLime, 0, L, -95 );
PlotShapes(shapeDownArrow*Sell, colorRed, 0, H, -30 );
SellPrice=ValueWhen(Sell,C,1);
BuyPrice=ValueWhen(Buy,C,1);
Long=Flip(Buy,Sell);
Shrt=Flip(Sell,Buy );
_SECTION_END();
Filter= Buy OR Sell OR Short OR Cover;
//=================TITLE============================ ================================================== ==================

_SECTION_BEGIN("Title");
if( Status("action") == actionIndicator )
(
Title = EncodeColor(colorWhite)+ "Advanced Trailstop System " + " - " + Name() + " - " + EncodeColor(colorRed)+ Interval(2) + EncodeColor(colorWhite) +
" - " + Date() +" - "+"\n" +EncodeColor(colorRed) +"Op-"+O+" "+"Hi-"+H+" "+"Lo-"+L+" "+
"Cl-"+C+" "+ "Vol= "+ WriteVal(V)+"\n"+
EncodeColor(colorLime)+
WriteIf (Buy , " GO LONG / Reverse Signal at "+C+" ","")+
WriteIf (Sell , " EXIT LONG / Reverse Signal at "+C+" ","")+"\n"+EncodeColor(colorWhite)+
WriteIf(Sell , "Total Profit/Loss for the Last Trade Rs."+(C-BuyPrice)+"","")+
WriteIf(Buy , "Total Profit/Loss for the Last trade Rs."+(SellPrice-C)+"","")+
WriteIf(Long AND NOT Buy, "Trade : Long - Entry price Rs."+(BuyPrice),"")+
WriteIf(shrt AND NOT Sell, "Trade : Short - Entry price Rs."+(SellPrice),"")+"\n"+
WriteIf(Long AND NOT Buy, "Current Profit/Loss Rs."+(C-BuyPrice)+"","")+
WriteIf(shrt AND NOT Sell, "Current Profit/Loss Rs."+(SellPrice-C)+"",""));
_SECTION_END();
 

a1b1trader

Well-Known Member
Hi

Facing an error in amibroker

CMemory Exception in AddqQuotationInt () - you have run out of memory

What should I do

Thanks
 

Similar threads