Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Flip It Indicator for Amibroker (AFL)
I have seen Flip It indicator at GCI Financials – CFD Share Trading Demo. The indicator is here in AFL form
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 25 | _SECTION_BEGIN ( "Price" ); SetChartOptions (0, chartShowArrows | chartShowDates ); SetBarsRequired ( sbrAll , sbrAll ); SetBarFillColor ( IIf ( C > O , ParamColor ( "Candle Up Color" , colorBrightGreen ), IIf ( C <= O , ParamColor ( "Candle Down Color" , colorRed ), colorLightGrey ))); Plot ( C , "Price" , IIf ( C > O , ParamColor ( "Shadow Up Color" , colorBlack ), IIf ( C <= O , ParamColor ( "Shadow Down Color" , colorBlack ), colorLightGrey )),64,0,0,0,0); SetChartBkColor ( ParamColor ( "Panel Color " , colorLightGrey )); SetChartBkGradientFill ( ParamColor ( "Upper Chart" , colorLightGrey ), ParamColor ( "Lower Chart" , colorLightGrey )); grid_day = IIf ( Day ()!= Ref ( Day (),-1),1,0); Plot (grid_day, "" , colorWhite , styleHistogram | styleDots | styleNoLabel | styleOwnScale ); _N (Title = StrFormat ( "{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}" , O , H , L , C , SelectedValue ( ROC ( C , 1 ) ) )); Plot ( C , "Close" , ParamColor ( "Price Color" , colorBlack ), styleNoTitle | ParamStyle ( "Price Style" ) | GetPriceStyle () ); _SECTION_END (); t= Param ( "t" , 24, 1, 100, 1); Top = Sum ( High , t) / t; Bottom = Sum ( Low , t) / t; av=(Top+Bottom)/2; mc= IIf (av> C , colorRed , colorGreen ); Plot (av, "" , mc, styleStaircase ); |
1 comments
Leave Comment
Please login here to leave a comment.
Back
good job dear friend ….