Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Marva Mid R-Line Signal for Amibroker (AFL)
This is single Line function with Buy/Sell Arrow.
Note: Pls grab this formula into price chart
Hopefully usefull.
Isfandi
Screenshots
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | _SECTION_BEGIN ( "Marva Mid R-Line Signal" ); x = Cum (1); lastx = LastValue ( x ); Daysback = 10; aa = LastValue ( LinRegIntercept ( Close , Daysback) ); bb = LastValue ( LinRegSlope ( Close , Daysback ) ); y = Aa + bb * ( x - (Lastx - DaysBack) ); //Plot( Close, "Close", colorRose, styleCandle ); Plot ( IIf ( x >= (lastx - Daysback), y, -1e10 ), "LinReg" , colorYellow ); per1= Param ( "per1" , 0.325,0.1,50,0.10); perc=per1; x1= BarIndex ();xx= SelectedValue (x); t1= SelectedValue ( ValueWhen ( PeakBars ( C ,perc)==0,x)) ; H1= SelectedValue ( ValueWhen ( PeakBars ( C ,perc)==0, C )) ; t11= SelectedValue ( ValueWhen ( TroughBars ( C ,perc)==0, x)); H11= SelectedValue ( ValueWhen ( TroughBars ( C ,perc)==0, C )); g=t1>t11; shape= IIf (g,shapeHollowDownTriangle*(x==t1),shapeHollowUpTriangle*(x ==t11)); Color= IIf (g, colorRed , colorBrightGreen ); PlotShapes (shape,color); _SECTION_END (); |
9 comments
Leave Comment
Please login here to leave a comment.
Back
Please use “bar reply” for looking how to operation.
Hi,
isfandi
You are a innovative person. Always try to share something interesting!
Thanks a lot.
May God bless you
Hi,
What is the bottom indicator in this screen shot.Can you please post the AFL?
Hi Isfandi,
Good AFL…thanks for sharing the same..
Isfandi——-thank u very much for sharing the nice AFL. Is it for intraday trading afl?
will u please explain how it works
interesting…… nice afl…thnx for sharing.
Admin please post how to read this AFL
very useful indicator, thank you very much.