Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Plot Foreign Volume for Amibroker (AFL)
This formula allows you to plot the volume for another ticker on the current price chart.
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | _SECTION_BEGIN ( "Foreign Volume" ); Ticker = ParamStr ( "Symbol" , Name ()); SetForeign (Ticker, True , True ); Plot ( Volume , _DEFAULT_NAME (), IIf ( C > O , ParamColor ( "Up Color" , colorGreen ), ParamColor ( "Down Color" , colorRed ) ), ParamStyle ( "Style" , styleArea | styleOwnScale | styleThick , maskHistogram ) ); Title = Name () + " - " + Date () + ", " + " Open=" + WriteVal ( O ,1.0)+ ", " + " High=" + WriteVal ( H ,1.0)+ ", " + " Low=" + WriteVal ( L ,1.0)+ ", " + " Close=" + WriteVal ( C ,1.0) + " Volume=" + WriteIf ( O > C , EncodeColor ( colorRed ), EncodeColor ( colorGreen )) + WriteVal ( V ,1.0); RestorePriceArrays (); _SECTION_END (); |
0 comments
Leave Comment
Please login here to leave a comment.
Back