PureBytes Links
Trading Reference Links
|
Mr Vijay shinde you need to start a fresh thread for that.
It is very wrong to jump with new requirements.
If you need a book ( that is costly ) you need to search other groups.
Never jump in threads
On Sat, Jan 30, 2010 at 8:30 PM, vijay shinde <vijay.pshinde@xxxxxxxxxxx> wrote:
Excuse me sir, My help is diff than your coding, plz can anyone will provide me ADXcellence Book by Charles Schaap.
From: Deepak Patade <iamdeepakpatade@xxxxxxxxx> To: amibroker@xxxxxxxxxxxxxxx
Sent: Fri, 29 January, 2010 7:41:28 PM Subject: Re: [amibroker] Re: ADX based trading system
Yeah Asis,
Add this for arrows.
PlotShapes(IIf( Buy,shapeUpArrow ,shapeNone) ,colorBlue, 0,L,-15);
PlotShapes(IIf( Sell,shapeDownAr row,shapeNone) ,colorRed, 0,H,-15);
to plot the text for the valuse add this
dist = 2.5*ATR(10);
for ( i = 0; i < BarCount; i++ )
{
if ( Buy[i] ) PlotText( "Buy\n@" + C[ i ], i, L[ i ]-dist[i], colorPink );
if ( Sell[i] ) PlotText( "Sell\n@" + C[ i ], i, H[ i ]+dist[i], colorRed, colorYellow );
}
But the cover part is yet to be answered
This ADX AFL is not showing anything in my AB(4.8) (Black Background)- -but no error is there either--how should I proceed ?
Can add : shape=Buy*shapeUpArrow + Sell*shapeDownArrow;
PlotShapes(shape,IIf(Buy,tsl_col,tsl_ col),0,IIf(Buy,Low,High));
Will it work---how can I text (PLOT TEXT for BUY/SELL OR LONG/SHORT/COVER Value ?)
Asis
Deepak Patade wrote:
This is fine ,
Can we add some more lines to this.
cover any buy or sell if any one of either macd or stoch crosses after the buy or sell signal.
say m1>s1 and k >d , so a buy signal is given since both are in buy mode.
this call is to be covered if either of this goes out of the trade i.e s1>m1 or d>k.
when either is not in call, we must also be out of the trades.
we shall enter trade only if
s1 > m1 and d > k
or the previous condition remeets ie m1 > s1 and k > d
i think its right
//MACD
r1 = Param( "Fast avg", 12, 2, 200, 1 ); r2 = Param( "Slow avg", 26, 2, 200, 1 ); r3 = Param( "Signal avg", 9, 2, 200, 1 );
m1 = MACD(r1, r2); s1 = Signal(r1,r2, r3);
//stochastic periods = Param( "Periods", 15, 1, 200, 1 ); Ksmooth = Param( "%K avg", 3, 1, 200, 1 ); Dsmooth = Param( "%D avg", 3, 1, 200, 1 ); periods = Param( "Periods", 15, 1, 200, 1 );
k=StochK( periods , Ksmooth); d=StochD( periods , Ksmooth, DSmooth );
//ADX range = Param("Periods", 14, 2, 200, 1 );
ADvX=ADX( range); tightstop=1; Loosestop=2; ApplyStop(stopTypeL oss,stopModePerc ent,IIf(advx>45,tightstop, Loosestop) );
Buy=IIf(advx<20,k>d,IIf(advx>30,m1>s1,IIf(Cross( Advx,23) AND LLV(advx,BarsSince( Cross(23, advx)))<18,m1>s1, IIf(Cross(27, advx) AND HHV(advx,BarsSince( Cross(advx, 27))),k>d,0))));
Sell=IIf(advx<20,k<d,IIf(advx>30,m1<s1,IIf(Cross( Advx,23) AND LLV(advx,BarsSince( Cross(23, advx)))<18,m1<s1, IIf(Cross(27, advx) AND HHV(advx,BarsSince( Cross(advx, 27))),k<d,0)))); Short=Cover= 0;
Buy=ExRem(Buy, Sell); Sell=ExRem(Sell, Buy);
The INTERNET now has a personality. YOURS! See your Yahoo! Homepage.
__._,_.___
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
__,_._,___
|