//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);
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);