Lets develop a trading system...!

dhinakar113

Well-Known Member
#51
Dear Linkan,

I have installed Amibroker in my system. I don't know how to set up the data download for intraday. Can you pl guide me how to do it. I am from Chennai. I do not have any friends here who are using Amibroker. You can mail me at: dhinakar113 at yahoo dot co dot in. Thanks.

Regds,
Dhinakar
 

Nava

Active Member
#52
Dear Linkan,

I have installed Amibroker in my system. I don't know how to set up the data download for intraday. Can you pl guide me how to do it. I am from Chennai. I do not have any friends here who are using Amibroker. You can mail me at: dhinakar113 at yahoo dot co dot in. Thanks.

Regds,
Dhinakar
Hi Dhinakar,

From the below link(remove the space) you can download EOD data from NSE and install into Amibroker. All instructions are given in this website.
http:// w w w .getbhavcopy.com/documentation.htm
 

linkon7

Well-Known Member
#53
Dear Linkan,

I have installed Amibroker in my system. I don't know how to set up the data download for intraday. Can you pl guide me how to do it. I am from Chennai. I do not have any friends here who are using Amibroker. You can mail me at: dhinakar113 at yahoo dot co dot in. Thanks.

Regds,
Dhinakar
I used to use the services from True data India for my live intra-day data feed. They charge about Rs. 550 /- per month. Even heard they plan to provide futures data. Currently i subscribe to Market data Provider.

alternately, you can try out
http://www.traderji.com/software/24...ker-metastock-fcharts-excel-txt-backfill.html

His software is good. You can use it to get EOD and IEOD data. If u use odin, they this software can feed anibroker data from there. They also provide rt data from ya hoo.
 

linkon7

Well-Known Member
#55


Lets look at today's chart....
We made a Higher Pivot Low (PL) then a higher Pivot High (PH), then we made another slightly higher PL and that confirmed our uptrend in the morning... So we were looking for longs...at that time. But we ended with making a lower PH and that was followed by a higher PL. We now enter long with the previous PH as the entry trigger. If markets were to fall lower then our long entry wouldnt trigger. The entry was successful.... (position is marked with a circle and the entry trigger line)

Market went to 4520 and that was the high of the day. WE made another higher PL and the entry trigger would be the previous (PH) of 4520 but it didnt trigger.

Then we made a 2 higher PL but the PH was getting lower. So, we enter short at the break of the last PL.... (position again marked with a circle and the entry trigger.

The target of the breakout remains...PH-PL x 75% from the PL or PH

we wont get days like today where the market moved in one direction only.

so 70% of the time, we stick to our target of PH-PL x 75%.
 

McNish

Active Member
#57
Hi Lincon.
Have studied the post from the start. The system you are designing is good. There are other systems too and like you said, the trained eye can see more than the picture can show, so a system with only the chart can aslo do. Analyse this - Bar patterns, Hammer and inverted hammers (Check historical data for this pattern). Club this with rsi and dma. Sure may not be appropriate for Intraday but surely for short term holdings.
Also can you post the afl for the above chart. C U Later.
 

linkon7

Well-Known Member
#59
Try this:

Code:
_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", colorWhite ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() ); 



tchoice=Param("Title Selection ",2,1,2,1);

Q=Param("% Change",2.1,1,10,1);
Z= Zig(C ,q ) ;
HH=((Z<Ref(Z,-1) AND Ref(Z,-1) > Ref(Z,-2)) AND (Peak(z,q,1 ) >Peak(Z,q,2)));
LH=((Z<Ref(Z,-1) AND Ref(Z,-1) > Ref(Z,-2)) AND (Peak(Z,q,1 ) <Peak(Z,q,2)));
HL=((Z>Ref(Z,-1) AND Ref(Z,-1) < Ref(Z,-2)) AND (Trough(Z,q,1 ) >Trough(Z,q,2)));
LL=((Z>Ref(Z,-1) AND Ref(Z,-1) < Ref(Z,-2)) AND (Trough(Z,q,1 ) <Trough(Z,q,2)));
GraphXSpace = 5;
dist = 0.5*ATR(20); 

for( i = 0; i < BarCount; i++ ) 
{ 
if( HH[i] ) PlotText( "HH \n"+H[i], i, H[ i ]+dist[i], colorCustom12 );
if( LH[i] ) PlotText( "LH: Sell \n @ "+H[i], i, H[ i ]+dist[i], colorCustom12 ); 
if( HL[i] ) PlotText( "HL:buy \n @"+L[i], i, L[ i ]-dist[i], colorAqua );
if( LL[i] ) PlotText( "LL\n"+L[i], i, L[ i ]-dist[i], colorAqua );

}
TimeFrameSet(inDaily);
MA3 = MA(C,3);
Cl = C;
TimeFrameRestore();
MA3=(TimeFrameExpand( MA3, inDaily));
Cl=(TimeFrameExpand( Cl, inDaily));
barcolor =IIf(C > MA3 , colorGreen,IIf(C < MA3,colorRed, colorBlack) );
Plot( C, "Close", barcolor , styleNoTitle |styleCandle); 

_SECTION_END();

_SECTION_BEGIN( "Chart Settings");
SetChartOptions( 0,chartShowArrows|chartShowDates );
SetChartBkColor( ParamColor( "Outer panel",colorBlack) );
SetChartBkGradientFill(
ParamColor(" Inner panel upper",colorDarkGrey),
ParamColor(" Inner panel lower",colorBlack) );
numbars = LastValue(Cum( Status("barvisib le")));
dec = (Param("Decimals" ,2,0,7,1) /10)+1;
bi=BarIndex( );
sbi = BarIndex();

//Plot(C,"",IIf( C>O,27, IIf(C<O,32,colorGrey50)),64) ;
 
Last edited:

linkon7

Well-Known Member
#60
The afl i use needs a dll file and hence wont work without it. I posted a afl that plots similar pivots... hope u find it useful...

Honestly, its all visual... worst case, u need to draw horizontal lines at what is being established at a pivot high and low... so u know where your SL is and where you should place your entry trigger...
 

Similar threads