Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Weekly and pivots for Amibroker (AFL)
Weekly pivots calculated based on whether the price is a certain amount above the linear regression of the price.
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 | Enter = 30; Exit = 20; TimeFrameSet ( inWeekly ); ROAR = int (5200 * LinRegSlope ( Close ,26)/ LinearReg ( Close ,26)); roar30 = int ( LinearReg (roar, 5)); RAW = ROAR; for (i = 1; i < BarCount ; i++ ) { if (ROAR[i] >= Enter AND roar30[i] >= Enter) ROAR[i] = roar30[i]; if (ROAR[i] < Exit) // if below Exit value ROAR[i] = 0; // then set to zero if (ROAR[i] < Enter AND ROAR[i-1] == 0) ROAR[i] = 0; } TimeFrameRestore (); Plot (ROAR, "ROAR" , colorBlue ,1); ROAR = TimeFrameExpand (ROAR, inWeekly ); Plot (RAW, "RAW" , colorPink ,1); Plot (Enter, "" , colorGreen ,1); Plot (Exit, "" , colorRed ,1); |
0 comments
Leave Comment
Please login here to leave a comment.
Back