Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
The Volume Bigot for Amibroker (AFL)
Don’t know where I got the original version…but this is the current iteration
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 26 27 28 29 30 31 32 33 34 35 36 37 | _SECTION_BEGIN ( "Chart Display" ); GraphXSpace = 28; SetBarsRequired ( 1,1); Param_systemTitle = ParamStr ( "System Title?" , "The Volume Bigot" ); if ( ParamToggle ( "Show System Title?" , "No|Yes" ,1)) periods = Param ( "Periods" , 34, 1, 200, 1 ) ; BulldayVol= ( Sum ( IIf ( C >= Ref ( C ,-1), V , 0), periods)) / periods ; BeardayVol= ( Sum ( IIf ( Ref ( C ,-1)>= C , V , 0), periods)) / periods ; TheVolumeBigot= 100-(100/(1+(BulldayVol/BearDayVol)))-50; Plot (TheVolumeBigot, " THE VOLUME BIGOT " ,28,4+ styleNoLabel ); Colour= IIf (TheVolumeBigot>0,8,4); Plot ( TheVolumeBigot, "" ,Colour,2); Plot (0, "" , colorGrey50 , styleNoLabel ); Plot (10, "" , colorGrey50 ); Plot (-10, "" , colorGrey50 ); Plot (20, "" , colorGrey50 ); Plot (-20, "" , colorGrey50 ); _SECTION_END (); _SECTION_BEGIN ( "Title" ); Title = EncodeColor (55)+ Title = Name () + " " + EncodeColor (32) + Date () + " " + EncodeColor (5) + "{{INTERVAL}} " + EncodeColor (55)+ " Open = " + EncodeColor (52)+ WriteVal ( O ) + EncodeColor (55)+ " High = " + EncodeColor (5) + WriteVal ( H ) + EncodeColor (55)+ " Low = " + EncodeColor (32)+ WriteVal ( L ) + EncodeColor (55)+ " Close = " + EncodeColor (52)+ WriteVal ( C )+ EncodeColor (55)+ " Volume = " + EncodeColor (43)+ WriteVal ( V ,1) + "\n" + "\n" + EncodeColor (43)+ " ------ THE VOLUME BIGOT ------ " + EncodeColor (52); _SECTION_END (); |
3 comments
Leave Comment
Please login here to leave a comment.
Back
Excellnt
hi
can u tell us the perfect way to use it and in which fram ???
how can I use it , can any one tell us ??