Stock Portfolio Organizer
The ultimate porfolio management solution.
Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Open interest for Amibroker (AFL)
Copy & Paste Friendly
Back
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 | //PVOI; D= IIf ( C > Ref ( C ,-1) AND V > Ref ( V ,-1) AND OI> Ref (OI,-1),7, IIf ( C > Ref ( C ,-1) AND V < Ref ( V ,-1) AND OI< Ref (OI,-1),6, IIf ( C > Ref ( C ,-1) AND V > Ref ( V ,-1) AND OI< Ref (OI,-1),5, IIf ( C > Ref ( C ,-1) AND V < Ref ( V ,-1) AND OI> Ref (OI,-1),2, IIf ( C < Ref ( C ,-1) AND V > Ref ( V ,-1) AND OI> Ref (OI,-1),0, IIf ( C < Ref ( C ,-1) AND V > Ref ( V ,-1) AND OI< Ref (OI,-1),1, IIf ( C < Ref ( C ,-1) AND V < Ref ( V ,-1) AND OI< Ref (OI,-1),3,4))))))); F1= EMA (D,5); F= EMA (F1,10); Plot (F, "P/V/OI" , colorGreen , styleLine | styleThick ); Plot (5.00, "" , colorPink , styleLine ); Plot (2.70, "" , colorLime , styleLine ); Plot (3.85, "" , colorBlack , styleLine | styleDashed | styleThick ); Plot (4.75, "" , colorPink , styleLine | styleDashed | styleThick ); Plot (2.95, "" , colorLime , styleLine | styleDashed | styleThick ); GraphXSpace =20; _SECTION_BEGIN ( "EMA1" ); P = ParamField ( "Price field" ,-1); P1 = Param ( "Periods" ,5,1,50,1); Plot ( EMA ( P, P1 ), _DEFAULT_NAME (), ParamColor ( "Color" , colorBlue ), ParamStyle ( "Style" ) ); |