Jump to content
Tom Next - Daytrading Community

123


ibelieve

Recommended Posts

Mal schauen ob sich was draus machen lässt.

 

http://www.traderji.com/amibroker/30596-1-...html#post333536

 

http://www.traderji.com/attachments/amibro...ab92bc2ecee.pdf

 

//1-2-3 High OR Low from metastock
// link http://www.meta-formula.com/Metastock-Formulas-A.html
//http://www.tradejuice.com/forex/forex-1-2-3-methode-mm.htm

//--------------------------
// Uptrend 8 conditions defined AND This works best as a reversal pattern
//1) identify a previous downtrend. )Wait for the MACD to Signal a Buy AND
//3)for the 1-2-3 LONG set up to be in place.
//4)As the market pulls back to point 3, the MACD should remain in
//Buy mode OR just slightly dip into Sell.
//5)Place a Buy entry order 1 tick above point 2
//6)Place a stop loss order 1 tick below point 3
//7)Measure the distance between point 2 AND 3 AND project that
//forward for your exit.
//8)Point 2, should NOT be lower than point 1 for 1-2-3 longsetup.

//-------------------------------------
//1-2-3 SHORTSETUP
//Downtrend 8 CONDITIONS to be met.
//1) Identify a previous UPtrend. 2)Wait for the MACD to Signal a Sell AND
//3)for the 1-2-3 SHORTset up to be in place.
//4)As the market pulls back UP to point 3, the MACD should remain in
//Sell mode OR just slightly dip into Buy.
//5)Place a Sell entry order 1 tick BELOW point 2
//6)Place a stop loss order 1 tick ABOVE point 3
//7)Measure the distance between point 2 AND 3 AND project that
//forward DOWN for your exit.
//8)Point 2, should NOT be HIGHER than point 1 for 1-2-3 SHORTsetup.
//--------------------------

S3 = C;
s4=TimeNum();
radius = 0.45 * Status("pxheight");
textoffset = 2.2 * radius;
GfxSelectFont("Tahoma", 12 );
GfxSetTextColor( colorBlue );
GfxTextOut(Date() ,textoffset +80,5 );
GfxSetTextColor( colorBlue );
GfxTextOut( "1 2 3 macd Close =" + s3, textoffset + 100, 30 );
GfxTextOut( "ADX(10) " + ADX(10), textoffset + 130, 70 );
GfxTextOut( "MACD() " + MACD(), textoffset + 130, 50 );
SetChartBkColor(50);//LIGHT YELLOW
//1-2-3 High OR Low

//Low
Mxl=MA(L,4);
xx=L > Ref(L,-1) AND L>Mxl AND
Ref(L,-1) < Ref(Mxl,-1) AND
LLV(L,5 ) > LLV(L,10 ) AND MACD()<0;
//High
Mxh=MA(H,4);
yy=H < Ref(H,-1) AND H < Mxh AND
Ref(H,-1) > Ref(Mxh,-1) AND
HHV(H,5 ) < HHV(H,10) AND MACD()>0;

PlotShapes( shapeUpTriangle*xx, colorBlue, 0, L , -10 );
PlotShapes( shapeDownTriangle*yy, colorRed, 0, H, -10 );

Plot(C,"",47,64);

post-1129-1247313437_thumb.png

Link to comment
Share on other sites

  • 2 weeks later...

Habe hier was zum Ross Haken bekommen.

 

Die Findung ist zwar nicht Optimal und Richtig,

aber den Trend Finder finde ich ganz Interessant.

 

Einfach ein 2 mal den gleichen GD um einige Tage versetzt.

 

RossHook = HHVBars(High,20)==2 AND EMA(Close,20)>Ref(EMA(Close,20),-10)
AND Ref(EMA(Close,20),-5) > Ref(EMA(Close,20),-15);

PlotShapes( IIf( RossHook, shapeUpArrow + shapePositionAbove, shapeNone ), colorBlue ); 

a= EMA(Close,20);
b = Ref(EMA(Close,20),-10);

Plot(a,"a",colorBlue,4);
Plot(b,"b",colorRed,4);

post-1129-1248187316_thumb.png

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...