Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
IBS - Internal Bar Strength for Amibroker (AFL)
It is calculated as the moving average of the values of the internal bars strength that represent the ratio (Close-Low)/(High-Low) * 100% for each of them.
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | _SECTION_BEGIN ( "IBS" ); SetTradeDelays (1,0,1,0); SetPositionSize (100, spsShares ); IBS = ( Close - Low )/( High - Low ); maIBS = MA (IBS,3); Plot (maIBS, "maIBS" , colorRed ); T1= 0.3; T2= 0.75; Buy = Cross (T1,maIBS); Sell = Close ; Short = Cross ( maIBS,T2); Cover = Close ; _SECTION_END (); |
0 comments
Leave Comment
Please login here to leave a comment.
Back