Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
One Day Trading for Amibroker (AFL)
The main tools we use are:
Average True Range (ATR) to determine the smallest range of the last 7 days
Ref, to refer to previous days
BuyPrice and SellPrice, to ensure we are buying and selling at the trigger level we want.
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 | SetTradeDelays ( 0, 1, 0, 0); PreCondition = ATR ( 1 ) < ATR ( 7) ; MoveUp = H > Ref ( H , -1 ); Buy = Ref ( PreCondition, -1 ) AND MoveUp; BuyPrice = Max ( Ref ( H , -1 ), O ); Sell = Buy ; Sell = ExRem ( Sell , Buy ); SellPrice = C ; |
0 comments
Leave Comment
Please login here to leave a comment.
Back