راه حل نهایی مدیریت پورتفولیو.
سهام، مارجین، CFD، آتی و فارکس EOD و Realtime سود سهام و توزیع اعتماد و خیلی بیشتر .
جعبه ابزار WiseTrader
پلاگین شماره 1 فروش Amibroker شامل:
شاخص های تطبیقی پیشرفته کاوش الگوی پیشرفته شبکه های عصبی و خیلی بیشتر .
کانال رگرسیون گرافیکی و خطی برای Amibroker (AFL)
تقریبا 12 سال پیش رتبه بندی: 3/5 (رای 7) برچسب ها: سیستم معاملاتی، آمی بروکر، پشتیبانی، مقاومت
با برخی پیشرفت ها و سیگنال های خرید/فروش.
اسکرین شات ها

شاخص ها / فرمول های مشابه
ارسال شده توسط vishyvishy تقریبا 13 سال پیش ارسال شده توسط sajid بیش از 12 سال پیش تقریبا 12 سال پیش توسط rajaswamy ارسال شده است تقریبا 13 سال پیش توسط siva ارسال شده است ارسال شده توسط panno بیش از 12 سال پیش تقریبا 13 سال پیش توسط emonsyl ارسال شده است
شاخص / فرمول
//CyberMan's Linear Regression Channel. //Linear Regression Line with 2 Standard Deviation Channels Plotted Above and Below //The original was written by Patrick Hargus, with critical hints from Marcin Gorzynski, Amibroker.com Technical Support //Wysiwyg coded the angle in degrees part //I modified the original Linear Regression code so that the line will change color based on the degree of the Linear Regression slope. //I combine this with my trading system. //When my system gives an entry signal I look at the Linear Regression Line and I will only take long positions //if the Linear Regression line is green AND the entry price is below the LR line. //When my system gives an entry signal I look at the Linear Regression Line and I will only take short positions //if the Linear Regression line is red AND the entry price is above the LR line. //It is usefull for filtering out lower probability trades. //================================================Start Chart Configuration====================================================== SetChartOptions(0,chartShowArrows|chartShowDates); _N(Title = StrFormat("> >> Open %g, Hi %g, Lo %g, Close %g (%.1f%%) Vol " +WriteVal( V, 1.0 ) + ">", O, H, L, C, SelectedValue( ROC( C, 1 )) )); //SetChartBkColor(colorBlack); Plot( C, "", colorBlack, styleCandle, Zorder = 1); SetChartOptions(0,chartShowArrows | chartShowDates); //================================================End Chart Configuration======================================================== //====================================Start of Linear Regression Code============================================================ P = ParamField("Price field",-1); Length = 150; Daysback = Param("Period for Liner Regression Line",Length,1,240,1); shift = Param("Look back period",0,0,240,1); //=============================== Math Formula ================================================================================= x = Cum(1); lastx = LastValue( x ) - shift; aa = LastValue( Ref(LinRegIntercept( p, Daysback), -shift) ); bb = LastValue( Ref(LinRegSlope( p, Daysback ), -shift) ); y = Aa + bb * ( x - (Lastx - DaysBack +1 ) ); //==================Plot the Linear Regression Line ============================================================================ LRColor = ParamColor("LR Color", colorCycle ); LRStyle = ParamStyle("LR Style"); LRLine = IIf( x>(lastx - Daysback) AND BarIndex()(lastx - Daysback) AND BarIndex()(lastx - Daysback) AND BarIndex()Ref(LRLine,-1),colorLime,colorRed);//Changes LR line to green if sloping up and red if sloping down. Plot( LRLine , "LinReg", Trend, styleDots ); //============================ End Indicator Code ======================================================================= //TRENDING RIBBON // Paste the code below to your price chart somewhere and green ribbon means both // both MACD and ADX trending up so if the red ribbon shows up the MACD and the ADX // are both trending down. _SECTION_BEGIN("trending ribbon"); uptrend=PDI()>MDI() AND MACD()>Signal(); downtrend=MDI()>PDI() AND Signal()>MACD(); Plot( 2, /* defines the height of the ribbon in percent of pane width */"", IIf( uptrend, colorLime, IIf( downtrend, colorRed, 0 )), /* choose color */ styleOwnScale|styleArea|styleNoLabel, -0.5, 100 ); _SECTION_END(); //xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx //FORMULE P = ParamField("Price field",-1); cuptop1= C>BBandTop(p,20,1) ; bot1= BBandBot(p,20,1) ; top2= BBandTop(p,20,2) ; bot2= BBandBot(p,20,2) ; stochup= StochK()>StochD() ; MACDup= MACD()>Signal() ; Hist= MACD()-Signal() ; Histup= Hist>Ref(Hist,-1) ; MFIupema5= MFI()>EMA(MFI(),5) ; top1up= BBandTop(p,20,1)>Ref(BBandTop(p,20,1),-1) ; band= BBandTop(p,20,2)-BBandBot(p,20,2) ; Volatbuy= band>Ref(band,-1) ; cupbot1= C>BBandBot(p,20,1) ; bot1dn= BBandBot(p,20,1)0 ; Cupma10= C>MA(C,10) ; Cupma20= C>MA(C,20) ; MA10up= MA(C,10)>Ref(MA(C,10),-1) ; MA10upma20= MA(C,10)>MA(C,20) ; MA20up= MA(C,20)>Ref(MA(C,20),-1) ; Cupema50= C>EMA(C,50) ; Vup= V>10000 AND C>O ; trendup= LRLine>Ref(LRLine,-1) ; Cdnlrl= CSignal() AND Hist>Ref(Hist,-1) AND LRLine>Ref(LRLine,-1) و CMACD() ; خرید = ExRem (myBuy، myShort); فروش = ExRem (myShort، myBuy); PlotShapes(IIf(Buy, shapeUpArrow, shapeNone), colorBlue, 0, L, Offset=-10); PlotShapes(IIf(Sell, shapeDownArrow, shapeNone), colorRed, 0, H, Offset=-10);//پایان xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx4 نظر
1. prakash2009 تقریبا 12 سال پیش
هیچ پیکان خرید و فروش در نمودار 5 دقیقه ای وجود ندارد.
2. مورگن تقریبا 12 سال پیش
من فکر می کنم، این فقط برای سرمایه گذاران EOD است.
دوره ی فارکس...
ما را در سایت دوره ی فارکس دنبال می کنید
برچسب :
نویسنده : مهناز افشار
بازدید : 83
تاريخ : دوشنبه
13 شهريور
1402 ساعت: 16:15