Zum Inhalt springen
View in the app

A better way to browse. Learn more.

#T/N/X/T

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

123

Geschrieben

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

Featured Replies

Geschrieben
  • Autor

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

Dein Kommentar

Du kannst jetzt schreiben und Dich später registrieren. Wenn Du ein Konto hast, melde Dich jetzt an, um unter Deinem Benutzernamen zu schreiben.

Gast
Auf dieses Thema antworten...

Account

Navigation

Suche

Suche

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.